diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-08-09 22:17:37 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-08-09 22:17:37 +0000 |
commit | 1beac006865b241c830803f1e643b9594ee204b6 (patch) | |
tree | c5dc0e3eaaa8499942e4de22b8914cbadc688ae2 /configure.in | |
parent | fc7461768bd38509f42f8e603ce28dde76585f99 (diff) | |
download | xine-lib-1beac006865b241c830803f1e643b9594ee204b6.tar.gz xine-lib-1beac006865b241c830803f1e643b9594ee204b6.tar.bz2 |
make developers life easier: add possibility to use an existing shared
version of libdvdnav
CVS patchset: 2416
CVS date: 2002/08/09 22:17:37
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index cd1e6e4e7..e1655accf 100644 --- a/configure.in +++ b/configure.in @@ -605,6 +605,14 @@ AM_CHECK_CDROM_IOCTLS([AC_DEFINE([HAVE_CDROM_IOCTLS])], [AC_MSG_RESULT([*** DVD and (S)VCD support will be disabled ***])]) AM_CONDITIONAL(HAVE_CDROM_IOCTLS, [test x"$have_cdrom_ioctls" = "xyes"]) +dnl +dnl check for a usable version of libdvdnav +dnl +AM_PATH_DVDNAV(0.1.3, + AC_DEFINE(HAVE_DVDNAV), + [AC_MSG_RESULT([*** no usable version of libdvdnav found, using internal copy ***])]) +AM_CONDITIONAL(HAVE_DVDNAV, [test x"$no_dvdnav" != "xyes"]) + dnl dnl ASF build can be optional |