[Mplayer-cvslog] CVS: main configure,1.750,1.751
Alban Bedel CVS
albeu at mplayerhq.hu
Fri Aug 15 21:13:55 CEST 2003
- Previous message: [Mplayer-cvslog] CVS: main/libmpdemux stream_ftp.c,NONE,1.1 stream.c,1.68,1.69 asf_mmst_streaming.c,1.10,1.11 asf_streaming.c,1.39,1.40 network.c,1.84,1.85 network.h,1.17,1.18 stream_netstream.c,1.5,1.6 Makefile,1.66,1.67
- Next message: [Mplayer-cvslog] CVS: main/libmenu menu_dvbin.c,NONE,1.1 menu.c,1.10,1.11 Makefile,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv19792
Modified Files:
configure
Log Message:
ftp support. The change on connect2Server is needed bcs we need 2
different level of verbosity for control and data connections.
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.750
retrieving revision 1.751
diff -u -r1.750 -r1.751
--- configure 13 Aug 2003 16:29:00 -0000 1.750
+++ configure 15 Aug 2003 19:12:55 -0000 1.751
@@ -172,6 +172,7 @@
--disable-inet6 Disable IPv6 support [autodetect]
--disable-gethostbyname2
gethostbyname() is not provided by the C library [autodetect]
+ --disable-ftp Disable ftp support [enabled]
Codecs:
--enable-gif enable gif support [autodetect]
--enable-png enable png input/output support [autodetect]
@@ -1139,6 +1140,7 @@
_fribidiconfig='fribidi-config'
_inet6=auto
_gethostbyname2=auto
+_ftp=yes
for ac_option do
case "$ac_option" in
# Skip 1st pass
@@ -1336,6 +1338,8 @@
--disable-freetype) _freetype=no ;;
--enable-unrarlib) _unrarlib=yes ;;
--disable-unrarlib) _unrarlib=no ;;
+ --enable-ftp) _ftp=yes ;;
+ --disable-ftp) _ftp=no ;;
--enable-fribidi) _fribidi=yes ;;
--disable-fribidi) _fribidi=no ;;
@@ -4943,6 +4947,16 @@
fi
echores "$_network"
+echocheck "ftp"
+if test "$_ftp" != no ; then
+ _def_ftp='#define HAVE_FTP 1'
+ _inputmodules="ftp $_inputmodules"
+else
+ _noinputmodules="ftp $_noinputmodules"
+ _def_ftp='#undef HAVE_FTP'
+fi
+echores "$_ftp"
+
# endian testing
echocheck "byte order"
if test "$_big_endian" = auto ; then
@@ -5913,6 +5927,9 @@
/* enable network */
$_def_network
+
+/* enable ftp support */
+$_def_ftp
/* enable winsock2 instead of Unix functions*/
$_def_winsock2
- Previous message: [Mplayer-cvslog] CVS: main/libmpdemux stream_ftp.c,NONE,1.1 stream.c,1.68,1.69 asf_mmst_streaming.c,1.10,1.11 asf_streaming.c,1.39,1.40 network.c,1.84,1.85 network.h,1.17,1.18 stream_netstream.c,1.5,1.6 Makefile,1.66,1.67
- Next message: [Mplayer-cvslog] CVS: main/libmenu menu_dvbin.c,NONE,1.1 menu.c,1.10,1.11 Makefile,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list