1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 11:25:10 +00:00

mpdvdkit vs. bsd fixed?

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5888 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-04-28 17:34:58 +00:00
parent 938caaeb02
commit 7b7beb219b

15
configure vendored
View File

@ -2621,15 +2621,14 @@ if test "$_dvdkit" = yes ; then
_inputmodules="mpdvdkit $_inputmodules"
_dvdread=included
fi
if bsd ; then
_def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
_def_dvd_linux='#undef HAVE_LINUX_DVD_STRUCT'
_def_dvd_bsd='#undef HAVE_BSD_DVD_STRUCT'
if linux || netbsd || openbsd ; then
_def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
else
_def_dvd_bsd='#undef HAVE_BSD_DVD_STRUCT'
fi
if linux ; then
_def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
else
_def_dvd_linux='#undef HAVE_LINUX_DVD_STRUCT'
if freebsd || bsdos ; then
_def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
fi
fi
else
_noinputmodules="mpdvdkit $_noinputmodules"