summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-01 17:34:57 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-01 17:34:57 +0000
commit7ded17d4c254f4cf1bac828cb007c227c9c28074 (patch)
tree5b5c14ea011b9445e955467871fd905800e61c40
parentd7a070795371cef6afe97d8f88336267e3cd4577 (diff)
downloadmpv-7ded17d4c254f4cf1bac828cb007c227c9c28074.tar.bz2
mpv-7ded17d4c254f4cf1bac828cb007c227c9c28074.tar.xz
include dvdnav.h from its installation directory rather than appending
-Idvdnav to the compilation of the whole mplayer (dvdnav-config was just cleaned) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25567 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
-rw-r--r--stream/stream_dvdnav.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index e494366d6a..295b08b969 100755
--- a/configure
+++ b/configure
@@ -7563,7 +7563,7 @@ fi
if test "$_dvdnav" = auto ; then
cat > $TMPC <<EOF
#include <inttypes.h>
-#include <dvdnav.h>
+#include <dvdnav/dvdnav.h>
int main(void) { dvdnav_t *dvd=0; return 0; }
EOF
_dvdnav=no
diff --git a/stream/stream_dvdnav.c b/stream/stream_dvdnav.c
index 311b553737..296391c337 100644
--- a/stream/stream_dvdnav.c
+++ b/stream/stream_dvdnav.c
@@ -10,7 +10,7 @@
#include "input/input.h"
#include "stream.h"
#include "libmpdemux/demuxer.h"
-#include <dvdnav.h>
+#include <dvdnav/dvdnav.h>
#include "stream_dvdnav.h"
#include "libvo/video_out.h"
#include "libavutil/common.h"