From 9a46fe7509e3d239feff7b3ae420d9c1fe5a8b11 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Sat, 27 Jan 2007 07:58:21 +0000 Subject: [PATCH] Change one occurence of 'test $foo = yes -o test $bar = yes' to 'enabled_any foo bar', and one occurence of 'test $foo = yes && test $bar = yes' to 'enabled_all foo bar'. patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7723 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 7b6accb27d..db202628d8 100755 --- a/configure +++ b/configure @@ -1138,8 +1138,8 @@ else logfile=/dev/null fi -if test "$mingw32" = "yes" -o "$wince" = "yes"; then - if test "$lshared" = "yes" && test "$lstatic" = "yes" ; then +if enabled_any mingw32 wince; then + if enabled_all lshared lstatic; then cat <