comparison configure @ 21095:a9dccda1eef4

Remove --with-x264libdir.
author diego
date Mon, 20 Nov 2006 16:59:09 +0000
parents 85e28925e490
children fab53122b590
comparison
equal deleted inserted replaced
21094:85e28925e490 21095:a9dccda1eef4
420 multiple paths separated by ':'): 420 multiple paths separated by ':'):
421 --extra-libs=FLAGS extra linker flags 421 --extra-libs=FLAGS extra linker flags
422 --with-extraincdir=DIR extra header search paths in DIR (*) 422 --with-extraincdir=DIR extra header search paths in DIR (*)
423 --with-extralibdir=DIR extra linker search paths in DIR (*) 423 --with-extralibdir=DIR extra linker search paths in DIR (*)
424 --with-x11libdir=DIR X library files in DIR (*) 424 --with-x11libdir=DIR X library files in DIR (*)
425 --with-x264libdir=DIR libx264 in DIR
426 --with-livelibdir=DIR LIVE555 Streaming Media in DIR 425 --with-livelibdir=DIR LIVE555 Streaming Media in DIR
427 --with-xmmsplugindir=DIR XMMS plugins in DIR 426 --with-xmmsplugindir=DIR XMMS plugins in DIR
428 --with-xmmslibdir=DIR libxmms.so.1 in DIR 427 --with-xmmslibdir=DIR libxmms.so.1 in DIR
429 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA) 428 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
430 429
2133 _ld_x11=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` 2132 _ld_x11=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
2134 ;; 2133 ;;
2135 --with-xvmclib=*) 2134 --with-xvmclib=*)
2136 _xvmclib=`echo $ac_option | cut -d '=' -f 2` 2135 _xvmclib=`echo $ac_option | cut -d '=' -f 2`
2137 ;; 2136 ;;
2138 --with-x264libdir=*)
2139 _ld_x264=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
2140 ;;
2141 --with-sdl-config=*) 2137 --with-sdl-config=*)
2142 _sdlconfig=`echo $ac_option | cut -d '=' -f 2` 2138 _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
2143 ;; 2139 ;;
2144 --with-freetype-config=*) 2140 --with-freetype-config=*)
2145 _freetypeconfig=`echo $ac_option | cut -d '=' -f 2` 2141 _freetypeconfig=`echo $ac_option | cut -d '=' -f 2`
6433 #if X264_BUILD < 53 6429 #if X264_BUILD < 53
6434 #error We do not support old versions of x264. Get the latest from SVN. 6430 #error We do not support old versions of x264. Get the latest from SVN.
6435 #endif 6431 #endif
6436 int main(void) { x264_encoder_open((void*)0); return 0; } 6432 int main(void) { x264_encoder_open((void*)0); return 0; }
6437 EOF 6433 EOF
6438 _ld_x264="$_ld_x264 -lx264 $_ld_pthread"
6439 _x264=no 6434 _x264=no
6440 if cc_check $_ld_x264 $_ld_lm ; then 6435 for _ld_tmp in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_x11 $_ld_lm" ; do
6441 _x264=yes 6436 cc_check $_ld_tmp && _ld_x264="$_ld_tmp" && _x264=yes && break
6442 elif test "$_x11" = yes && cc_check $_ld_x264 $_ld_x11 $_ld_lm ; then 6437 done
6443 _x264=yes
6444 _ld_x264="$_ld_x264 $_ld_x11"
6445 fi
6446 fi 6438 fi
6447 6439
6448 if test "$_x264" = yes ; then 6440 if test "$_x264" = yes ; then
6449 _x264=yes 6441 _x264=yes
6450 _def_x264='#define HAVE_X264 1' 6442 _def_x264='#define HAVE_X264 1'
6456 _lavc_x264=no 6448 _lavc_x264=no
6457 _def_lavc_x264='#undef CONFIG_X264' 6449 _def_lavc_x264='#undef CONFIG_X264'
6458 fi 6450 fi
6459 else 6451 else
6460 _x264=no 6452 _x264=no
6461 _ld_x264=''
6462 _lavc_x264=no 6453 _lavc_x264=no
6463 _def_x264='#undef HAVE_X264' 6454 _def_x264='#undef HAVE_X264'
6464 _def_lavc_x264='#undef CONFIG_X264' 6455 _def_lavc_x264='#undef CONFIG_X264'
6465 _nocodecmodules="x264 $_nocodecmodules" 6456 _nocodecmodules="x264 $_nocodecmodules"
6466 fi 6457 fi