# HG changeset patch # User diego # Date 1204886383 0 # Node ID 5c53b397a536ef54a68be0a3e1f0a8092475156a # Parent 64654d7bebbc8b07c4c563820e93d1805e21ccde Add parentheses where necessary to fix || conditions to work as intended. diff -r 64654d7bebbc -r 5c53b397a536 configure --- a/configure Fri Mar 07 10:36:31 2008 +0000 +++ b/configure Fri Mar 07 10:39:43 2008 +0000 @@ -4254,9 +4254,9 @@ _vidix_drv_unichrome=no if test "$_vidix_internal" = auto ; then _vidix_internal=no - x86 && linux || freebsd || netbsd || openbsd || sunos || win32 \ + x86 && (linux || freebsd || netbsd || openbsd || sunos || win32) \ && _vidix_internal=yes - ppc || alpha && linux && _vidix_internal=yes + (ppc || alpha) && linux && _vidix_internal=yes fi if test "$_vidix_internal" = yes; then _res_comment="internal" @@ -5389,10 +5389,10 @@ echocheck "dvdread" 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 || \ + 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 "$_hpux_scsi_h" = yes); then _dvdread_internal=yes _dvdread=yes fi