Mercurial > mplayer.hg
comparison configure @ 19536:7dee65ac137e
Remove --with-madlibdir option, it never worked anyway.
author | diego |
---|---|
date | Sat, 26 Aug 2006 17:10:26 +0000 |
parents | 17439bdff148 |
children | e32250c3db9a |
comparison
equal
deleted
inserted
replaced
19535:69b134c4caea | 19536:7dee65ac137e |
---|---|
406 Use these options if autodetection fails (Options marked with (*) accept | 406 Use these options if autodetection fails (Options marked with (*) accept |
407 multiple paths separated by ':'): | 407 multiple paths separated by ':'): |
408 --with-extraincdir=DIR extra headers (png, mad, sdl, ...) in DIR (*) | 408 --with-extraincdir=DIR extra headers (png, mad, sdl, ...) in DIR (*) |
409 --with-extralibdir=DIR extra library files (png, mad, sdl, ...) in DIR (*) | 409 --with-extralibdir=DIR extra library files (png, mad, sdl, ...) in DIR (*) |
410 --with-x11libdir=DIR X library files in DIR (*) | 410 --with-x11libdir=DIR X library files in DIR (*) |
411 --with-madlibdir=DIR libmad (libmad shared library) in DIR (*) | |
412 --with-mlibdir=DIR libmlib (mediaLib support) in DIR (Solaris only) | 411 --with-mlibdir=DIR libmlib (mediaLib support) in DIR (Solaris only) |
413 --with-codecsdir=DIR Binary codec files in DIR | 412 --with-codecsdir=DIR Binary codec files in DIR |
414 --with-win32libdir=DIR W*ndows DLL files in DIR | 413 --with-win32libdir=DIR W*ndows DLL files in DIR |
415 --with-xanimlibdir=DIR XAnim DLL files in DIR | 414 --with-xanimlibdir=DIR XAnim DLL files in DIR |
416 --with-reallibdir=DIR RealPlayer DLL files in DIR | 415 --with-reallibdir=DIR RealPlayer DLL files in DIR |
2139 _glibconfig=`echo $ac_option | cut -d '=' -f 2` | 2138 _glibconfig=`echo $ac_option | cut -d '=' -f 2` |
2140 ;; | 2139 ;; |
2141 --with-dvdnav-config=*) | 2140 --with-dvdnav-config=*) |
2142 _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2` | 2141 _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2` |
2143 ;; | 2142 ;; |
2144 --with-madlibdir=*) | |
2145 _ld_mad=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | |
2146 ;; | |
2147 --with-cdparanoialibdir=*) | 2143 --with-cdparanoialibdir=*) |
2148 _ld_cdparanoia=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | 2144 _ld_cdparanoia=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` |
2149 ;; | 2145 ;; |
2150 --with-toolamelibdir=*) | 2146 --with-toolamelibdir=*) |
2151 _ld_toolame=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | 2147 _ld_toolame=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` |
5511 _mad=no | 5507 _mad=no |
5512 cat > $TMPC << EOF | 5508 cat > $TMPC << EOF |
5513 #include <mad.h> | 5509 #include <mad.h> |
5514 int main(void) { return 0; } | 5510 int main(void) { return 0; } |
5515 EOF | 5511 EOF |
5516 cc_check $_madlibdir -lmad && _mad=yes | 5512 cc_check -lmad && _mad=yes |
5517 fi | 5513 fi |
5518 if test "$_mad" = yes ; then | 5514 if test "$_mad" = yes ; then |
5519 _def_mad='#define USE_LIBMAD 1' | 5515 _def_mad='#define USE_LIBMAD 1' |
5520 _ld_mad='-lmad' | 5516 _ld_mad='-lmad' |
5521 _codecmodules="libmad $_codecmodules" | 5517 _codecmodules="libmad $_codecmodules" |