summaryrefslogtreecommitdiff
path: root/gabble
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-11-15 11:34:42 +0000
committerWill Thompson <will.thompson@collabora.co.uk>2011-11-15 11:37:15 +0000
commit4489ee2d93ea434e1c197a5dd5b43497ea32f84a (patch)
tree001a4634d02265b7aaf2a1e8c3ce1f7abed03b41 /gabble
parent6f19217de80f2392e0ad8ed08bf1156cb2bef1a5 (diff)
configure: remove --enable-handle-leak-debug.
There's no such thing as a handle leak any more, so this is vestigial. Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'gabble')
-rw-r--r--gabble/configure.ac11
1 files changed, 0 insertions, 11 deletions
diff --git a/gabble/configure.ac b/gabble/configure.ac
index 14daa8f97..8fa9e6be7 100644
--- a/gabble/configure.ac
+++ b/gabble/configure.ac
@@ -133,10 +133,6 @@ AC_ARG_ENABLE(debug,
AC_HELP_STRING([--disable-debug],[compile without debug code]),
enable_debug=$enableval, enable_debug=yes )
-AC_ARG_ENABLE(handle-leak-debug,
- AC_HELP_STRING([--enable-handle-leak-debug],[compile with -rdynamic so telepathy-glib handle leak debugging code will work]),
- enable_handle_leak_debug=$enableval, enable_handle_leak_debug=no )
-
ifelse(gabble_nano_version, 0,
[ # Gabble is version x.y.z - disable coding style checks by default
AC_ARG_ENABLE(coding-style-checks,
@@ -156,13 +152,6 @@ if test x$enable_debug = xyes; then
fi
AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = xyes])
-if test x$enable_handle_leak_debug = xyes; then
- AC_DEFINE(ENABLE_HANDLE_LEAK_DEBUG, [], [Enable handle leak debug code])
- HANDLE_LEAK_DEBUG_CFLAGS="-rdynamic"
-fi
-
-AC_SUBST(HANDLE_LEAK_DEBUG_CFLAGS)
-
AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
AC_ARG_ENABLE([installed-tests],