Mercurial > mplayer.hg
comparison configure @ 36420:b8ccbb9b9dad
Improve handling of internal vs. external dvdread/dvdnav
Document that switching dvdread to external also switches
dvdnav.
If dvdnav-config/dvdread-config paths are given, assume
the user wants to use external versions.
author | reimar |
---|---|
date | Sat, 16 Nov 2013 23:31:56 +0000 |
parents | 3dfe2b0db098 |
children | 019636d54771 |
comparison
equal
deleted
inserted
replaced
36419:c69eaba13338 | 36420:b8ccbb9b9dad |
---|---|
358 --enable-librtmp enable RTMPDump Streaming Media [autodetect] | 358 --enable-librtmp enable RTMPDump Streaming Media [autodetect] |
359 --disable-vcd disable VCD support [autodetect] | 359 --disable-vcd disable VCD support [autodetect] |
360 --disable-bluray disable Blu-ray support [autodetect] | 360 --disable-bluray disable Blu-ray support [autodetect] |
361 --disable-dvdnav disable libdvdnav [autodetect] | 361 --disable-dvdnav disable libdvdnav [autodetect] |
362 --disable-dvdread disable libdvdread [autodetect] | 362 --disable-dvdread disable libdvdread [autodetect] |
363 --disable-dvdread-internal disable internal libdvdread [autodetect] | 363 --disable-dvdread-internal disable internal libdvdread and libdvdnav [autodetect] |
364 --disable-libdvdcss-internal disable internal libdvdcss [autodetect] | 364 --disable-libdvdcss-internal disable internal libdvdcss [autodetect] |
365 --disable-cdparanoia disable cdparanoia [autodetect] | 365 --disable-cdparanoia disable cdparanoia [autodetect] |
366 --disable-cddb disable cddb [autodetect] | 366 --disable-cddb disable cddb [autodetect] |
367 --disable-bitmap-font disable bitmap font support [enable] | 367 --disable-bitmap-font disable bitmap font support [enable] |
368 --disable-freetype disable FreeType 2 font rendering [autodetect] | 368 --disable-freetype disable FreeType 2 font rendering [autodetect] |
600 | 600 |
601 --with-freetype-config=PATH path to freetype-config | 601 --with-freetype-config=PATH path to freetype-config |
602 --with-glib-config=PATH path to glib*-config | 602 --with-glib-config=PATH path to glib*-config |
603 --with-gtk-config=PATH path to gtk*-config | 603 --with-gtk-config=PATH path to gtk*-config |
604 --with-sdl-config=PATH path to sdl*-config | 604 --with-sdl-config=PATH path to sdl*-config |
605 --with-dvdnav-config=PATH path to dvdnav-config | 605 --with-dvdnav-config=PATH path to dvdnav-config, also disables internal dvdread and dvdnav |
606 --with-dvdread-config=PATH path to dvdread-config | 606 --with-dvdread-config=PATH path to dvdread-config, also disables internal dvdread and dvdnav |
607 | 607 |
608 This configure script is NOT autoconf-based, even though its output is similar. | 608 This configure script is NOT autoconf-based, even though its output is similar. |
609 It will try to autodetect all configuration options. If you --enable an option | 609 It will try to autodetect all configuration options. If you --enable an option |
610 it will be forcefully turned on, skipping autodetection. This can break | 610 it will be forcefully turned on, skipping autodetection. This can break |
611 compilation, so you need to know what you are doing. | 611 compilation, so you need to know what you are doing. |
914 --with-glib-config=*) | 914 --with-glib-config=*) |
915 _glibconfig=$(option_value $ac_option) | 915 _glibconfig=$(option_value $ac_option) |
916 ;; | 916 ;; |
917 --with-dvdnav-config=*) | 917 --with-dvdnav-config=*) |
918 _dvdnavconfig=$(option_value $ac_option) | 918 _dvdnavconfig=$(option_value $ac_option) |
919 _dvdread_internal=no | |
919 ;; | 920 ;; |
920 --with-dvdread-config=*) | 921 --with-dvdread-config=*) |
921 _dvdreadconfig=$(option_value $ac_option) | 922 _dvdreadconfig=$(option_value $ac_option) |
923 _dvdread_internal=no | |
922 ;; | 924 ;; |
923 | 925 |
924 --extra-cflags=*) | 926 --extra-cflags=*) |
925 extra_cflags=$(option_value $ac_option) | 927 extra_cflags=$(option_value $ac_option) |
926 ;; | 928 ;; |