From 108cca22d0ca11116496f6f6954128f876093fa7 Mon Sep 17 00:00:00 2001 From: Jody Goldberg Date: Thu, 12 Dec 2002 21:03:58 +0000 Subject: [PATCH] now that autoconf-2.52 is a prereq for things the build broke on the use 2002-12-12 Jody Goldberg * 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 --- ChangeLog | 7 +++++++ macros2/gnome-common.m4 | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d499b2e..86da063 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-12-12 Jody Goldberg + + * 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 * 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 ]) -- 2.7.4