summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-25 15:00:57 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-25 15:00:57 +0000
commit87a0fb627b60a9f13e296e3e2af34b12c997ac95 (patch)
tree96da6b102c45016018a402b2cfc0e36fbbc3c5a8 /configure
parent1f96bafb27a1a201dc0bfd299bea7c0a2d8370dc (diff)
Rename --disable-strip option to --disable-stripping. This allows
handling this option in a more standard way. Originally committed as revision 12582 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 5 insertions, 6 deletions
diff --git a/configure b/configure
index e7fa4be43c..5d3b0693a5 100755
--- a/configure
+++ b/configure
@@ -177,7 +177,7 @@ show_help(){
echo " --enable-gprof enable profiling with gprof [$gprof]"
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 " --disable-stripping disable stripping of executables and shared libraries"
echo ""
echo "NOTE: Object files are built at the place where configure is launched."
exit 1
@@ -776,6 +776,7 @@ CMDLINE_SELECT="
optimizations
shared
static
+ stripping
"
# code dependency declarations
@@ -900,7 +901,6 @@ enable zlib
# configurable options
enable debug
-enable dostrip
enable ffmpeg
enable ffplay
enable ffserver
@@ -910,6 +910,7 @@ enable mpegaudio_hp
enable network
enable optimizations
enable protocols
+enable stripping
vhook="default"
# build settings
@@ -1030,8 +1031,6 @@ for opt do
;;
--enable-sunmlib) enable mlib
;;
- --disable-strip) disable dostrip
- ;;
--disable-devices) disable $INDEV_LIST $OUTDEV_LIST
;;
--enable-debug=*) debuglevel="$optval"
@@ -1908,7 +1907,7 @@ if test $arch = "powerpc"; then
fi
echo "gprof enabled ${gprof-no}"
echo "debug symbols ${debug-no}"
-echo "strip symbols ${dostrip-no}"
+echo "strip symbols ${stripping-no}"
echo "optimizations ${optimizations-no}"
echo "static ${static-no}"
echo "shared ${shared-no}"
@@ -1985,7 +1984,7 @@ echo "CC=$cc" >> config.mak
echo "AR=$ar" >> config.mak
echo "RANLIB=$ranlib" >> config.mak
echo "LN_S=$ln_s" >> config.mak
-enabled dostrip &&
+enabled stripping &&
echo "STRIP=$strip" >> config.mak ||
echo "STRIP=echo ignoring strip" >> config.mak