[Ffmpeg-cvslog] r7723 - trunk/configure

diego subversion
Sat Jan 27 08:58:21 CET 2007


Author: diego
Date: Sat Jan 27 08:58:21 2007
New Revision: 7723

Modified:
   trunk/configure

Log:
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


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sat Jan 27 08:58:21 2007
@@ -1138,8 +1138,8 @@
     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 <<EOF
 You can only build one library type at once on MinGW.
 Specify --disable-static --enable-shared to only build




More information about the ffmpeg-cvslog mailing list