Mercurial > mplayer.hg
comparison configure @ 32291:7a7456aea7d8
Add proper autodetection for FTP support; should fix Bugzilla #1804.
author | diego |
---|---|
date | Sun, 26 Sep 2010 22:06:33 +0000 |
parents | 33d9f6230dff |
children | 02c4e1a2298b |
comparison
equal
deleted
inserted
replaced
32290:33d9f6230dff | 32291:7a7456aea7d8 |
---|---|
779 _freetypeconfig='freetype-config' | 779 _freetypeconfig='freetype-config' |
780 _fribidi=auto | 780 _fribidi=auto |
781 _enca=auto | 781 _enca=auto |
782 _inet6=auto | 782 _inet6=auto |
783 _gethostbyname2=auto | 783 _gethostbyname2=auto |
784 _ftp=yes | 784 _ftp=auto |
785 _musepack=auto | 785 _musepack=auto |
786 _vstream=auto | 786 _vstream=auto |
787 _pthreads=auto | 787 _pthreads=auto |
788 _w32threads=auto | 788 _w32threads=auto |
789 _ass=auto | 789 _ass=auto |
7615 fi | 7615 fi |
7616 echores "$_pvr" | 7616 echores "$_pvr" |
7617 | 7617 |
7618 | 7618 |
7619 echocheck "ftp" | 7619 echocheck "ftp" |
7620 if ! beos && test "$networking" = yes && test "$_ftp" = yes ; then | 7620 if test "$_ftp" = "auto" ; then |
7621 test "$networking" = "yes" && ! beos && _ftp=yes | |
7622 fi | |
7623 if test "$_ftp" = yes ; then | |
7621 def_ftp='#define CONFIG_FTP 1' | 7624 def_ftp='#define CONFIG_FTP 1' |
7622 inputmodules="ftp $inputmodules" | 7625 inputmodules="ftp $inputmodules" |
7623 else | 7626 else |
7624 noinputmodules="ftp $noinputmodules" | 7627 noinputmodules="ftp $noinputmodules" |
7625 def_ftp='#undef CONFIG_FTP' | 7628 def_ftp='#undef CONFIG_FTP' |