diff options
author | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-06-13 22:39:59 +0000 |
---|---|---|
committer | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-06-13 22:39:59 +0000 |
commit | 96961f6ea7e363d5d19792923cf835f796768752 (patch) | |
tree | 1c4c84118e01ed88ce68ef12d59cf0be5c8c177a /configure | |
parent | f142a3effa82c6a31545d64781f16a10063832e4 (diff) |
Darwin/Mac OS X dvd support. Patch from Joey Parrish <joey@yunamusic.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6421 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -2909,13 +2909,12 @@ fi echocheck "DVD support (libmpdvdkit)" if test "$_dvdkit" = auto ; then _dvdkit=no - if linux || freebsd || netbsd ; then + if linux || freebsd || netbsd || darwin; then test -f "./libmpdvdkit/Makefile" && _dvdkit=yes fi fi if test "$_dvdkit" = yes ; then - test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || test "$_dvdio" = yes || test "$_bdsi_dvd" = yes && _dvdkit=yes - if test "$_dvdkit" = yes ; then + if test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || test "$_dvdio" = yes || test "$_bdsi_dvd" = yes ; then _inputmodules="mpdvdkit $_inputmodules" _dvdread=included fi |