[Ffmpeg-cvslog] r7745 - trunk/configure
diego
subversion
Sun Jan 28 17:34:48 CET 2007
Author: diego
Date: Sun Jan 28 17:34:47 2007
New Revision: 7745
Modified:
trunk/configure
Log:
Use ! disabled() where appropriate.
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Sun Jan 28 17:34:47 2007
@@ -1161,7 +1161,7 @@
esac
done
-if test "$logging" != no; then
+if ! disabled logging ; then
enabled logging || logfile="$logging"
echo "# $0 $@" >$logfile
set >>$logfile
@@ -1314,7 +1314,7 @@
fi
fi
-if test $optimize != "no"; then
+if ! disabled optimize ; then
add_cflags "-fomit-frame-pointer"
fi
@@ -1571,7 +1571,7 @@
for thread in pthreads beosthreads os2threads w32threads; do
if enabled $thread; then
- if test $thread_type != "no"; then
+ if ! disabled thread_type ; then
die "ERROR: Only one thread type must be selected."
else
thread_type="$thread"
More information about the ffmpeg-cvslog
mailing list