Commit 55cf7e7c authored by Sam Hocevar's avatar Sam Hocevar

  * Added HTTP virtualhost support in the HTTP input.
  * Enabled mouse clicks in the GGI plugin.
  * Minor Makefile alteration.
parent c67dcbe7
...@@ -174,7 +174,7 @@ endif ...@@ -174,7 +174,7 @@ endif
$(INSTALL) -m 644 share/*.xpm $(DESTDIR)$(datadir)/videolan $(INSTALL) -m 644 share/*.xpm $(DESTDIR)$(datadir)/videolan
vlc-uninstall: vlc-uninstall:
rm $(DESTDIR)$(bindir)/vlc rm -f $(DESTDIR)$(bindir)/vlc
ifneq (,$(ALIASES)) ifneq (,$(ALIASES))
for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias ; fi ; done for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias ; fi ; done
endif endif
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout_ggi.c: GGI video output display method * vout_ggi.c: GGI video output display method
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000, 2001 VideoLAN * Copyright (C) 1998, 1999, 2000, 2001 VideoLAN
* $Id: vout_ggi.c,v 1.10 2001/05/30 17:03:12 sam Exp $ * $Id: vout_ggi.c,v 1.11 2001/10/02 17:09:44 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -227,7 +227,7 @@ int vout_Manage( vout_thread_t *p_vout ) ...@@ -227,7 +227,7 @@ int vout_Manage( vout_thread_t *p_vout )
case 'Q': case 'Q':
case GIIUC_Escape: case GIIUC_Escape:
/* FIXME pass message ! */ /* FIXME pass message ! */
//p_main->p_intf->b_die = 1; p_main->p_intf->b_die = 1;
break; break;
default: default:
...@@ -241,7 +241,7 @@ int vout_Manage( vout_thread_t *p_vout ) ...@@ -241,7 +241,7 @@ int vout_Manage( vout_thread_t *p_vout )
{ {
case GII_PBUTTON_RIGHT: case GII_PBUTTON_RIGHT:
/* FIXME: need locking ! */ /* FIXME: need locking ! */
//p_main->p_intf->b_menu_change = 1; p_main->p_intf->b_menu_change = 1;
break; break;
} }
break; break;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* decoders. * decoders.
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input.c,v 1.134 2001/10/02 17:04:43 massiot Exp $ * $Id: input.c,v 1.135 2001/10/02 17:09:44 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -1161,8 +1161,9 @@ static void HTTPOpen( input_thread_t * p_input ) ...@@ -1161,8 +1161,9 @@ static void HTTPOpen( input_thread_t * p_input )
} }
else else
{ {
snprintf( psz_buffer, sizeof(psz_buffer), "GET /%s HTTP/1.0\r\n\r\n", snprintf( psz_buffer, sizeof(psz_buffer),
psz_path ); "GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n",
psz_path, psz_server );
} }
psz_buffer[sizeof(psz_buffer) - 1] = '\0'; psz_buffer[sizeof(psz_buffer) - 1] = '\0';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment