diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-02-02 23:40:21 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-02-02 23:40:21 +0000 |
commit | 4cc9f0f5217f94f4e64f22428abc613306855614 (patch) | |
tree | bde64cd81189cbbd5021be8046da22096575ae00 | |
parent | fc6bc87d189e0a6db760707b37ea4c58fce9383b (diff) | |
download | xine-lib-4cc9f0f5217f94f4e64f22428abc613306855614.tar.gz xine-lib-4cc9f0f5217f94f4e64f22428abc613306855614.tar.bz2 |
revert dvdnav detection scheme. Default is embedded one, user should pass --with-external-dvdnav to use libdvdnav from the system.
CVS patchset: 4095
CVS date: 2003/02/02 23:40:21
-rw-r--r-- | configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index fc8190bcf..838dab94b 100644 --- a/configure.ac +++ b/configure.ac @@ -719,16 +719,17 @@ AM_CONDITIONAL(HAVE_CDROM_IOCTLS, [test x"$have_cdrom_ioctls" = "xyes"]) dnl --------------------------------------------- dnl check for a usable version of libdvdnav dnl --------------------------------------------- -AC_ARG_WITH(included-dvdnav,[ --with-included-dvdnav Use included dvdnav library [recommended]], - included_dvdnav="yes"; no_dvdnav="yes", included_dvdnav="no") +AC_ARG_WITH(external-dvdnav,[ --with-external-dvdnav Use external dvdnav library [[not recommended]]], + [external_dvdnav="yes"], [no_dvdnav="yes"; external_dvdnav="no"]) -if test x"$included_dvdnav" = "xno"; then +if test x"$external_dvdnav" = "xyes"; then AM_PATH_DVDNAV(0.1.4, AC_DEFINE(HAVE_DVDNAV,1,[Define this if you have a suitable version of libdvdnav]), [AC_MSG_RESULT([*** no usable version of libdvdnav found, using internal copy ***])]) else AC_MSG_RESULT([Use included DVDNAV/DVDREAD support]) fi + AM_CONDITIONAL(HAVE_DVDNAV, [test x"$no_dvdnav" != "xyes"]) dnl --------------------------------------------- |