now that autoconf-2.52 is a prereq for things the build broke on the use
authorJody Goldberg <jody@gnome.org>
Thu, 12 Dec 2002 21:03:58 +0000 (21:03 +0000)
committerJody Goldberg <jody@src.gnome.org>
Thu, 12 Dec 2002 21:03:58 +0000 (21:03 +0000)
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

ChangeLog
macros2/gnome-common.m4

index d499b2e..86da063 100644 (file)
--- 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.
index d229843..a33d2d8 100644 (file)
@@ -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
 ])