summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-01 21:59:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-01 21:59:39 +0000
commit54ea438edfad6426abaa5e305801692e806f1359 (patch)
tree1aa6506aaf115f2400fd2c44071e4c048f3cc717
parenta414eba619fd378c8b380243840ba2605b6a6ac5 (diff)
downloadmpv-54ea438edfad6426abaa5e305801692e806f1359.tar.bz2
mpv-54ea438edfad6426abaa5e305801692e806f1359.tar.xz
Darwin and Win32 DVD support libs are handled separately, take them back
out of the combined system and DVD header test in the dvdread check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26318 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 9ee6d5fade..381267d114 100755
--- a/configure
+++ b/configure
@@ -5413,9 +5413,10 @@ echocheck "dvdread"
if test "$_dvdread_internal" = auto ; then
_dvdread_internal=no
_dvdread=no
- if (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || sunos || hpux) && \
- (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
- test "$_dvdio" = yes || test "$_bsdi_dvd" = yes); then
+ if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
+ && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
+ test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
+ || darwin || win32; then
_dvdread_internal=yes
_dvdread=yes
fi