summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@usa.net>2003-05-07 05:15:52 +0000
committerMurray Cumming <murrayc@src.gnome.org>2003-05-07 05:15:52 +0000
commitcea8c149af2fd1fbe0bdc374adfaa811261a6c6a (patch)
tree25136dd73e8d0f08075836694914ee30bb47fa39 /scripts
parent5d8b9401508008977545e89a2be7ad1babae151b (diff)
downloadglibmm-cea8c149af2fd1fbe0bdc374adfaa811261a6c6a.tar.gz
Made the --enable-debug-refouncting configure option set GLIBMM_* instead
2003-05-07 Murray Cumming <murrayc@usa.net> * scripts/macros.m4: Made the --enable-debug-refouncting configure option set GLIBMM_* instead of GTKMM_*.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/macros.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/macros.m4 b/scripts/macros.m4
index b96320b1..a5b20383 100644
--- a/scripts/macros.m4
+++ b/scripts/macros.m4
@@ -101,22 +101,22 @@ AC_DEFUN([AL_ACLOCAL_INCLUDE],
])
-## GTKMM_ARG_ENABLE_DEBUG_REFCOUNTING()
+## GLIBMM_ARG_ENABLE_DEBUG_REFCOUNTING()
##
## Provide the --enable-debug-refcounting configure argument, disabled
## by default. If enabled, #define GTKMM_DEBUG_REFCOUNTING.
##
-AC_DEFUN([GTKMM_ARG_ENABLE_DEBUG_REFCOUNTING],
+AC_DEFUN([GLIBMM_ARG_ENABLE_DEBUG_REFCOUNTING],
[
AC_ARG_ENABLE([debug-refcounting],
[ --enable-debug-refcounting Print a debug message on every ref/unref.
[[default=disabled]]],
- [gtkmm_debug_refcounting="$enableval"],
- [gtkmm_debug_refcounting='no'])
+ [glibmm_debug_refcounting="$enableval"],
+ [glibmm_debug_refcounting='no'])
- if test "x$gtkmm_debug_refcounting" = "xyes"; then
+ if test "x$glibmm_debug_refcounting" = "xyes"; then
{
- AC_DEFINE([GTKMM_DEBUG_REFCOUNTING],[1], [Defined when the --enable-debug-refcounting configure argument was given])
+ AC_DEFINE([GLIBMM_DEBUG_REFCOUNTING],[1], [Defined when the --enable-debug-refcounting configure argument was given])
}
fi
])