diff options
-rw-r--r-- | source3/configure.in | 17 |
1 files 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 |