summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJody Goldberg <jody@gnome.org>2002-12-12 21:03:58 +0000
committerJody Goldberg <jody@src.gnome.org>2002-12-12 21:03:58 +0000
commit108cca22d0ca11116496f6f6954128f876093fa7 (patch)
tree0623b0026c613073ade16a47b9ffc0e0b09f57df
parent87f2022e3dc0fdad24e231d7be790c954998adde (diff)
downloadgnome-common-108cca22d0ca11116496f6f6954128f876093fa7.tar.gz
now that autoconf-2.52 is a prereq for things the build broke on the use
2002-12-12 Jody Goldberg <jody@gnome.org> * macros2/gnome-common.m4 (GNOME_DEBUG_CHECK) : now that autoconf-2.52 is a prereq for things the build broke on the use of AC_DEFINE(GNOME_ENABLE_DEBUG) without the additional arguments. eg in libgnome svn path=/trunk/; revision=2678
-rw-r--r--ChangeLog7
-rw-r--r--macros2/gnome-common.m43
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d499b2e..86da063 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-12-12 Jody Goldberg <jody@gnome.org>
+
+ * macros2/gnome-common.m4 (GNOME_DEBUG_CHECK) : now that autoconf-2.52
+ is a prereq for things the build broke on the use of
+ AC_DEFINE(GNOME_ENABLE_DEBUG)
+ without the additional arguments.
+
2001-12-11 Anders Carlsson <andersca@gnu.org>
* configure.in: Up to 1.2.4.
diff --git a/macros2/gnome-common.m4 b/macros2/gnome-common.m4
index d229843..a33d2d8 100644
--- a/macros2/gnome-common.m4
+++ b/macros2/gnome-common.m4
@@ -46,6 +46,7 @@ AC_DEFUN([GNOME_DEBUG_CHECK],
AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging [default=no]], enable_debug="$enableval", enable_debug=no)
if test x$enable_debug = xyes ; then
- AC_DEFINE(GNOME_ENABLE_DEBUG)
+ AC_DEFINE(GNOME_ENABLE_DEBUG,1,
+ [Enable additional debugging at the expense of performance and size])
fi
])