diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-03-10 21:14:14 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-03-10 21:14:14 +0000 |
commit | 393039dbf092579847f43821fb694ac5789c56fb (patch) | |
tree | b6929307abb63fd85af0ef92f6ae51d2feeefc62 /src/input/input_dvd.c | |
parent | 8c0b202a58fbce2a96ce3d02eea24b0e1e786e7a (diff) | |
download | xine-lib-393039dbf092579847f43821fb694ac5789c56fb.tar.gz xine-lib-393039dbf092579847f43821fb694ac5789c56fb.tar.bz2 |
Make buildable with current (external) libdvdnav & libdvdread.
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 400f82aca..27e49e05a 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -79,7 +79,13 @@ /* DVDNAV includes */ #ifdef HAVE_DVDNAV # include <dvdnav/dvdnav.h> -# include <dvdnav/nav_read.h> +# ifdef HAVE_DVDNAV_NAVTYPES_H +# include <dvdnav/nav_types.h> +# include <dvdnav/nav_read.h> +# else +# include <dvdread/nav_types.h> +# include <dvdread/nav_read.h> +# endif #else # define DVDNAV_COMPILE # include "dvdnav.h" |