Remove --with-madlibdir option, it never worked anyway.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19542 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-08-26 17:10:26 +00:00
parent 9ad95ec9fd
commit 86beebc55d
1 changed files with 1 additions and 5 deletions

6
configure vendored
View File

@ -408,7 +408,6 @@ multiple paths separated by ':'):
--with-extraincdir=DIR extra headers (png, mad, sdl, ...) in DIR (*)
--with-extralibdir=DIR extra library files (png, mad, sdl, ...) in DIR (*)
--with-x11libdir=DIR X library files in DIR (*)
--with-madlibdir=DIR libmad (libmad shared library) in DIR (*)
--with-mlibdir=DIR libmlib (mediaLib support) in DIR (Solaris only)
--with-codecsdir=DIR Binary codec files in DIR
--with-win32libdir=DIR W*ndows DLL files in DIR
@ -2141,9 +2140,6 @@ for ac_option do
--with-dvdnav-config=*)
_dvdnavconfig=`echo $ac_option | cut -d '=' -f 2`
;;
--with-madlibdir=*)
_ld_mad=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
;;
--with-cdparanoialibdir=*)
_ld_cdparanoia=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
;;
@ -5513,7 +5509,7 @@ if test "$_mad" = auto ; then
#include <mad.h>
int main(void) { return 0; }
EOF
cc_check $_madlibdir -lmad && _mad=yes
cc_check -lmad && _mad=yes
fi
if test "$_mad" = yes ; then
_def_mad='#define USE_LIBMAD 1'