From 78a3af6233627b7257c40ca040001bee6c6f9b3e Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 25 Mar 2005 14:37:10 +0000 Subject: r6062: work around autoconf setting the CFLAGS="-g -O2" by default in AC_CACHE_CHECK (This used to be commit 605dd5b97c09fd3e6bc09eefa78ef333201c0b7c) --- source3/configure.in | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index 72a04375a2..9b2f4b80ce 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -235,6 +235,16 @@ AC_ARG_ENABLE(debug, CFLAGS="${CFLAGS} -g" fi]) +# compile with optimization and without debugging by default, but +# allow people to set their own preference. +# do this here since AC_CACHE_CHECK apparently sets the CFLAGS to "-g -O2" +# if it has no value. This prevent *very* large debug binaries from occurring +# by default. +if test "x$CFLAGS" = x; then + CFLAGS="-O" +fi + + AC_ARG_ENABLE(developer, [ --enable-developer Turn on developer warnings and debugging (default=no)], [if eval "test x$enable_developer = xyes"; then developer=yes @@ -293,13 +303,6 @@ AC_PATH_PROG(PERL, perl) AC_CHECK_TOOL(AR, ar) -# compile with optimization and without debugging by default, but -# allow people to set their own preference. -if test "x$CFLAGS" = x -then - CFLAGS="-O ${CFLAGS}" -fi - dnl Check if we use GNU ld LD=ld AC_PROG_LD_GNU -- cgit