diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-24 19:19:02 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-24 19:19:02 +0000 |
commit | d2bbb2f743e253869316db3e45f639d09285f583 (patch) | |
tree | facb90afd6c55fa7f9eb65ed13380a30b98831af | |
parent | 8400d6b8eae4aedb788b28eb85ce9af85145adce (diff) | |
download | ffmpeg-d2bbb2f743e253869316db3e45f639d09285f583.tar.gz |
Rename --disable-opts option to --disable-optimizations in order to be less
ambiguous, opts sounds more like options than optimizations.
Originally committed as revision 10855 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -164,7 +164,7 @@ show_help(){ echo echo "Developer options (useful when working on FFmpeg itself):" echo " --enable-gprof enable profiling with gprof [$gprof]" - echo " --disable-opts disable compiler optimizations" + echo " --disable-optimizations disable compiler optimizations" echo " --enable-extra-warnings enable more compiler warnings" echo " --disable-strip disable stripping of executables and shared libraries" echo "" @@ -725,6 +725,7 @@ CMDLINE_SELECT=" $THREADS_LIST debug extra_warnings + optimizations shared static " @@ -982,8 +983,6 @@ for opt do ;; --cpu=*) cpu="$optval" ;; - --disable-opts) disable optimizations - ;; --enable-sunmlib) enable mlib ;; --disable-strip) disable dostrip |