1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Diego Biurrun 2007-10-24 19:19:02 +00:00
parent 8400d6b8ea
commit d2bbb2f743

5
configure vendored
View File

@ -164,7 +164,7 @@ show_help(){
echo echo
echo "Developer options (useful when working on FFmpeg itself):" echo "Developer options (useful when working on FFmpeg itself):"
echo " --enable-gprof enable profiling with gprof [$gprof]" 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 " --enable-extra-warnings enable more compiler warnings"
echo " --disable-strip disable stripping of executables and shared libraries" echo " --disable-strip disable stripping of executables and shared libraries"
echo "" echo ""
@ -725,6 +725,7 @@ CMDLINE_SELECT="
$THREADS_LIST $THREADS_LIST
debug debug
extra_warnings extra_warnings
optimizations
shared shared
static static
" "
@ -982,8 +983,6 @@ for opt do
;; ;;
--cpu=*) cpu="$optval" --cpu=*) cpu="$optval"
;; ;;
--disable-opts) disable optimizations
;;
--enable-sunmlib) enable mlib --enable-sunmlib) enable mlib
;; ;;
--disable-strip) disable dostrip --disable-strip) disable dostrip