diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-01 17:34:57 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-01 17:34:57 +0000 |
commit | 7ded17d4c254f4cf1bac828cb007c227c9c28074 (patch) | |
tree | 5b5c14ea011b9445e955467871fd905800e61c40 | |
parent | d7a070795371cef6afe97d8f88336267e3cd4577 (diff) |
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-x | configure | 2 | ||||
-rw-r--r-- | stream/stream_dvdnav.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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" |