Fix debug compilation when CFLAGS is set on the configure line.

This commit is contained in:
Marcelo Roberto Jimenez 2010-12-22 09:58:48 -02:00
parent c8af5ec806
commit d5af7efeb8

View File

@ -392,10 +392,11 @@ freebsd*)
*) *)
echo "Using non-specific system compiler settings" echo "Using non-specific system compiler settings"
if test x"$enable_debug" = xyes; then if test x"$enable_debug" = xyes; then
# AC_PROG_CC already sets CFLAGS to "-g -O2" by default # AC_PROG_CC already sets CFLAGS to "-g -O2" by default,
# but only if CFLAGS was not previously set.
#: #:
# Use -O0 in debug so that variables do not get optimized out # Use -O0 in debug so that variables do not get optimized out
AX_CFLAGS_GCC_OPTION([-O0]) AX_CFLAGS_GCC_OPTION([-O0, -g])
else else
# add optimise for size # add optimise for size
AX_CFLAGS_GCC_OPTION([-Os]) AX_CFLAGS_GCC_OPTION([-Os])