From: kramm Date: Sat, 22 Feb 2003 20:18:41 +0000 (+0000) Subject: disable stripping with --enable-debug. X-Git-Tag: release-0-4-4~87 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=5903c277d586e0f2489ca1409586d6f8cc87b227 disable stripping with --enable-debug. --- diff --git a/configure.in b/configure.in index 62d24ce..ee74d83 100644 --- a/configure.in +++ b/configure.in @@ -7,7 +7,7 @@ AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging], DEBUG=true) PACKAGE=swftools -VERSION=0.4.4-pre9 +VERSION=0.4.4-pre10 # -Winline? if test "x$CHECKMEM" '!=' "x";then @@ -16,6 +16,9 @@ fi if test "x$DEBUG" '!=' "x";then CFLAGS="-Wparentheses -Wimplicit -Wreturn-type -g $CFLAGS" CXXFLAGS="-Wparentheses -Wimplicit -Wreturn-type -g $CXXFLAGS" + STRIP="echo debug enabled, not stripping " + export STRIP + AC_SUBST(STRIP) else CFLAGS="-Wparentheses -Wimplicit -Wreturn-type -O -fomit-frame-pointer $CFLAGS" CXXFLAGS="-Wparentheses -Wimplicit -Wreturn-type -O -fomit-frame-pointer $CXXFLAGS"