summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-28 21:05:09 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-28 21:05:09 +0000
commitc041927ead2a39216cedff4ef6df3dcbcdb72881 (patch)
tree7c6b15ed03e06b17071f99bef5f8fbb768bc5594 /configure
parent0a945c970bfc630ae29533208041f65e83e532e9 (diff)
downloadmpv-c041927ead2a39216cedff4ef6df3dcbcdb72881.tar.bz2
mpv-c041927ead2a39216cedff4ef6df3dcbcdb72881.tar.xz
only freebsd has BSD-style dvd_struct? - enable dvdkit only for linux+freebsd
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5892 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 65b916c223..bb7e37fd55 100755
--- a/configure
+++ b/configure
@@ -2626,7 +2626,7 @@ fi
echocheck "DVD support (libmpdvdkit)"
if test "$_dvdkit" = auto ; then
_dvdkit=no
- if linux || bsd || sunos ; then
+ if linux || freebsd ; then
test -f "./libmpdvdkit/Makefile" && _dvdkit=yes
fi
fi
@@ -2638,10 +2638,10 @@ if test "$_dvdkit" = yes ; then
fi
_def_dvd_linux='#undef HAVE_LINUX_DVD_STRUCT'
_def_dvd_bsd='#undef HAVE_BSD_DVD_STRUCT'
- if linux || netbsd || openbsd ; then
+ if linux || netbsd || openbsd || bsdos ; then
_def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
else
- if freebsd || bsdos ; then
+ if freebsd ; then
_def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
fi
fi