From e6fa9fa74bbb0810cca871680b23cc557336fc1b Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 6 Feb 2004 17:49:43 +0000 Subject: [PATCH] STRIP is now again properly disabled if --enable-debug is set --- configure.in | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 493e35a..e248df3 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,8 @@ AC_ARG_ENABLE(lame, [ --disable-lame don't compile any L.A.M.E. mp3 encoding code in], DISABLE_LAME=true) PACKAGE=swftools -VERSION=0.5.0_pre1 +VERSION=2004-02-05-1504 + WARNINGS="-Wparentheses -Wimplicit -Wreturn-type" if test "x$ENABLE_WARNINGS" '!=' "x";then @@ -26,9 +27,6 @@ fi if test "x$DEBUG" '!=' "x";then CFLAGS="$WARNINGS -g $CFLAGS" CXXFLAGS="$WARNINGS -g $CXXFLAGS" - STRIP="@echo debug enabled, not stripping " - export STRIP - AC_SUBST(STRIP) else if test "x$OPTIMIZE" '!=' "x"; then CFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CFLAGS" CXXFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CXXFLAGS" @@ -60,7 +58,7 @@ esac dnl Checks for programs. AC_PROG_CC AC_PROG_CXX - + if test "x$CHECKMEM" '!=' "x";then CC="ccmalloc $CC" CXX="ccmalloc $CXX" @@ -109,6 +107,13 @@ if test "$prefix" != "NONE" -a "$prefix" != "/usr/local" -a "$prefix" != "/usr/l # TODO- test whether gcc still works after this fi +# this must be done after (I believe) AC_PROG_MAKE_SET +if test "x$DEBUG" '!=' "x";then + STRIP="@echo debug enabled, not stripping " + export STRIP + AC_SUBST(STRIP) +fi + dnl Checks for libraries. AC_CHECK_LIB(m, sin,, echo "Error: Math library not found."; -- 1.7.10.4