From e9fe5edc93573bce4d322fab69812b091b7c6905 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 1 Oct 2008 14:26:53 +0000 Subject: [PATCH] Monotone-Parent: 21b494ebcbcd11cf25e1a679e6c45afc02030f91 Monotone-Revision: 8851e1ba92912fede3c168667dc97ec1cf452185 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-10-01T14:26:53 Monotone-Branch: ca.inverse.sogo --- configure | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 83be6b757..c2924a135 100755 --- a/configure +++ b/configure @@ -17,7 +17,7 @@ ARG_PREFIX="" ARG_GSMAKE=`gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null` ARG_CFGMAKE="$PWD/config.make" ARG_WITH_DEBUG=1 -ARG_WITH_STRIP=1 +ARG_WITH_STRIP=0 ARG_WITH_LDAP_CONFIG=0 GNUSTEP_INSTALLATION_DOMAIN="LOCAL" @@ -322,10 +322,16 @@ checkDependencies() { } runIt() { + if [ "$ARG_WITH_DEBUG" == "1" ] && [ "$ARG_WITH_STRIP" == "1" ] + then + echo "Note: Disabling stripping of symbols since debug is enabled" + ARG_WITH_STRIP=0 + fi + if test $ARG_BEQUIET != 1; then printParas; fi - + if test $ARG_NOCREATE = 1; then if test $ARG_BEQUIET != 1; then echo "not creating the config file ...";