Mercurial > mplayer.hg
changeset 26286:fc1724f6552c
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.
author | diego |
---|---|
date | Tue, 01 Apr 2008 21:59:39 +0000 |
parents | fc0c115a793e |
children | 1bee753acda2 |
files | configure |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Tue Apr 01 21:22:02 2008 +0000 +++ b/configure Tue Apr 01 21:59:39 2008 +0000 @@ -5413,9 +5413,10 @@ 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