[MPlayer-cvslog] r32377 - trunk/configure

diego subversion at mplayerhq.hu
Mon Sep 27 00:06:33 CEST 2010


Author: diego
Date: Mon Sep 27 00:06:33 2010
New Revision: 32377

Log:
Add proper autodetection for FTP support; should fix Bugzilla #1804.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sun Sep 26 23:51:39 2010	(r32376)
+++ trunk/configure	Mon Sep 27 00:06:33 2010	(r32377)
@@ -781,7 +781,7 @@ _fribidi=auto
 _enca=auto
 _inet6=auto
 _gethostbyname2=auto
-_ftp=yes
+_ftp=auto
 _musepack=auto
 _vstream=auto
 _pthreads=auto
@@ -7617,7 +7617,10 @@ echores "$_pvr"
 
 
 echocheck "ftp"
-if ! beos && test "$networking" = yes && test "$_ftp" = yes ; then
+if test "$_ftp" = "auto" ; then
+test "$networking" = "yes" && ! beos && _ftp=yes
+fi
+if test "$_ftp" = yes ; then
   def_ftp='#define CONFIG_FTP 1'
   inputmodules="ftp $inputmodules"
 else


More information about the MPlayer-cvslog mailing list