diff options
author | Kevin Kofler <Kevin@tigcc.ticalc.org> | 2011-11-20 05:51:21 +0100 |
---|---|---|
committer | Kevin Kofler <Kevin@tigcc.ticalc.org> | 2011-11-20 05:51:21 +0100 |
commit | d1355065fbe275296fee39a75fe4fabb6950401b (patch) | |
tree | c3b5abcda4793de58182e9a0bdf5dd9a447559e8 | |
parent | a370ac90bb79945104809aeb3c331aaa1145e516 (diff) | |
download | xine-lib-d1355065fbe275296fee39a75fe4fabb6950401b.tar.gz xine-lib-d1355065fbe275296fee39a75fe4fabb6950401b.tar.bz2 |
fix system libdvdnav support to also link libdvdread
--HG--
branch : point-release
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7301c0ee1..c88bd2592 100644 --- a/configure.ac +++ b/configure.ac @@ -1766,6 +1766,7 @@ if test "x$external_dvdnav" = "xyes"; then AM_PATH_DVDNAV(0.1.9, 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 ***])]) + AC_CHECK_LIB(dvdread, navRead_DSI, DVDNAV_LIBS="$DVDNAV_LIBS -ldvdread",) else AC_MSG_RESULT([Use included DVDNAV support]) fi |