[MPlayer-cvslog] r32340 - trunk/configure

diego subversion at mplayerhq.hu
Wed Sep 22 00:26:44 CEST 2010


Author: diego
Date: Wed Sep 22 00:26:44 2010
New Revision: 32340

Log:
Move network requirement check for FTP into the FTP test.
This makes the FTP test self-sufficient and reduces complexity.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Tue Sep 21 23:13:21 2010	(r32339)
+++ trunk/configure	Wed Sep 22 00:26:44 2010	(r32340)
@@ -3344,7 +3344,6 @@ else
   noinputmodules="networking $noinputmodules"
   def_network='#undef CONFIG_NETWORK'
   def_networking='#undef CONFIG_NETWORKING'
-  _ftp=no
   libavprotocols=$(echo $libavprotocols | sed -e s/GOPHER_PROTOCOL// -e s/HTTP_PROTOCOL// -e s/RTMP_PROTOCOL// -e s/RTP_PROTOCOL// -e s/TCP_PROTOCOL// -e s/UDP_PROTOCOL// -e s/MMSH_PROTOCOL// -e s/MMST_PROTOCOL//)
   libavdemuxers=$(echo $libavdemuxers | sed -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER//)
 fi
@@ -7674,7 +7673,7 @@ echores "$_pvr"
 
 
 echocheck "ftp"
-if ! beos && test "$_ftp" = yes ; then
+if ! beos && test "$networking" = yes && test "$_ftp" = yes ; then
   def_ftp='#define CONFIG_FTP 1'
   inputmodules="ftp $inputmodules"
 else


More information about the MPlayer-cvslog mailing list