summaryrefslogtreecommitdiff
path: root/m4macros
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2011-03-22 20:46:16 +0100
committerNick Schermer <nick@xfce.org>2011-03-22 20:46:16 +0100
commitab2cf62f191b13884b4c7c7e71f10d0f21f3f9b5 (patch)
treefc2628a489febef1594a002776277111b149cfe8 /m4macros
parent1d71f62e24c95963f84b4d243fa8c07accd87af5 (diff)
downloadxfce4-dev-tools-ab2cf62f191b13884b4c7c7e71f10d0f21f3f9b5.tar.gz
Don't use -g3 for full debuggin.
This breaks the sun studio compiler and since -g defaults to level 2, it provides enough backtrace information.
Diffstat (limited to 'm4macros')
-rw-r--r--m4macros/xdt-features.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4macros/xdt-features.m4 b/m4macros/xdt-features.m4
index b09a504..51945fc 100644
--- a/m4macros/xdt-features.m4
+++ b/m4macros/xdt-features.m4
@@ -87,7 +87,7 @@ AC_HELP_STRING([--disable-debug], [Include no debugging support]),
if test x"$enable_debug" = x"full"; then
AC_DEFINE([DEBUG_TRACE], [1], [Define for tracing support])
- xdt_cv_additional_CFLAGS="$xdt_cv_additional_CFLAGS -O0 -g3 -Werror"
+ xdt_cv_additional_CFLAGS="$xdt_cv_additional_CFLAGS -O0 -g -Werror"
CPPFLAGS="$CPPFLAGS -DG_ENABLE_DEBUG"
AC_MSG_RESULT([full])
else