summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-01 07:31:03 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-01 07:31:03 +0000
commit5241f8a1f1708e8158b7b27aa30b20fe667886a2 (patch)
treef5b3c2442ecffdfd516bb8caa275982025d9d587 /configure
parent35071aae3f5f4df03d0459ae15c83da3248a9449 (diff)
downloadmpv-5241f8a1f1708e8158b7b27aa30b20fe667886a2.tar.bz2
mpv-5241f8a1f1708e8158b7b27aa30b20fe667886a2.tar.xz
changed the code that checks the presence of the external dvdread
to include the headers from libdvdread/ (as in current svn) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26951 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 4 insertions, 6 deletions
diff --git a/configure b/configure
index fb6bc0f710..e41cb11a7d 100755
--- a/configure
+++ b/configure
@@ -5367,14 +5367,13 @@ elif test "$_dvdread" = auto ; then
if test "$_dl" = yes; then
cat > $TMPC << EOF
#include <inttypes.h>
-#include <dvdread/dvd_reader.h>
-#include <dvdread/ifo_types.h>
-#include <dvdread/ifo_read.h>
-#include <dvdread/nav_read.h>
+#include <libdvdread/dvd_reader.h>
+#include <libdvdread/ifo_types.h>
+#include <libdvdread/ifo_read.h>
+#include <libdvdread/nav_read.h>
int main(void) { return 0; }
EOF
fi
- if test "$_dvdread" = no ; then
_dvdreadconfig="dvdread-config"
_dvdreadcflags=`$_dvdreadconfig --cflags`
_dvdreadlibs=`$_dvdreadconfig --libs`
@@ -5385,7 +5384,6 @@ EOF
_ld_extra="$_ld_extra $_dvdreadlibs"
_res_comment="external"
fi
- fi
fi
if test "$_dvdread_internal" = yes; then