From: Mans Rullgard Date: Sun, 19 Jun 2011 17:41:14 +0000 (+0100) Subject: configure: report optimization for size separately X-Git-Tag: rel20110916_inqubus2.b.0~6^2~222^2~12 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f082a0fb420f0367bdd00219fd0fe8fe3caf7bc7;p=coroid%2Fffmpeg_saccubus.git configure: report optimization for size separately This removes an unsightly override of the 'optimizations' setting only to make the configure report print 'small' when --enable-small is used. Signed-off-by: Mans Rullgard --- diff --git a/configure b/configure index 31e82fc6d..b26394ec2 100755 --- a/configure +++ b/configure @@ -3006,7 +3006,6 @@ fi if enabled small; then add_cflags $size_cflags - optimizations="small" elif enabled optimizations; then add_cflags $speed_cflags else @@ -3140,6 +3139,7 @@ if enabled sparc; then echo "VIS enabled ${vis-no}" fi echo "debug symbols ${debug-no}" +echo "optimize for size ${small-no}" echo "optimizations ${optimizations-no}" echo "static ${static-no}" echo "shared ${shared-no}"