diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-03-08 16:44:51 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-03-08 16:44:51 +0000 |
commit | ee5e856146a074f82970e6bec9c605b0c529ffd5 (patch) | |
tree | 140a12a5348b372991b8fe1fe674910ad62d3a9e /configure | |
parent | 3fe4b0b6966d6c6836cff1079e3cd02c0bf21bf6 (diff) | |
download | mpv-ee5e856146a074f82970e6bec9c605b0c529ffd5.tar.bz2 mpv-ee5e856146a074f82970e6bec9c605b0c529ffd5.tar.xz |
Move HP-UX SCSI header check from the internal libdvdread check to the
internal libdvdcss check, where it is really used.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26202 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5391,8 +5391,7 @@ if test "$_dvdread_internal" = auto ; then _dvdread_internal=no if (linux || freebsd || netbsd || darwin || openbsd || win32 || sunos || hpux) && \ (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \ - test "$_dvdio" = yes || test "$_bsdi_dvd" = yes || \ - test "$_hpux_scsi_h" = yes); then + test "$_dvdio" = yes || test "$_bsdi_dvd" = yes); then _dvdread_internal=yes _dvdread=yes fi @@ -5436,6 +5435,7 @@ echocheck "internal libdvdcss" if test "$_libdvdcss_internal" = auto ; then _libdvdcss_internal=no test "$_dvdread_internal" = yes && _libdvdcss_internal=yes + hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no fi if test "$_libdvdcss_internal" = yes ; then if linux || netbsd || openbsd || bsdos ; then |