aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-01-28 16:34:47 +0000
committerDiego Biurrun <diego@biurrun.de>2007-01-28 16:34:47 +0000
commite3c00e34f062141d4195ee7e07390596d46108ca (patch)
tree1e95108588e21e4ada4cc0146e6e8793db436176
parent47f9cc15cce4c92d44d675498384ee3b0fcdafbb (diff)
downloadffmpeg-e3c00e34f062141d4195ee7e07390596d46108ca.tar.gz
Use ! disabled() where appropriate.
Originally committed as revision 7745 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 1b6bed03f1..07a70c43c8 100755
--- a/configure
+++ b/configure
@@ -1161,7 +1161,7 @@ for opt do
esac
done
-if test "$logging" != no; then
+if ! disabled logging ; then
enabled logging || logfile="$logging"
echo "# $0 $@" >$logfile
set >>$logfile
@@ -1314,7 +1314,7 @@ if test $targetos = Darwin; then
fi
fi
-if test $optimize != "no"; then
+if ! disabled optimize ; then
add_cflags "-fomit-frame-pointer"
fi
@@ -1571,7 +1571,7 @@ fi
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"