Added configure option --with-dmalloc to use the dmalloc memory debugging library.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1998-08-15 23:52:16 +00:00
parent 1280032d6c
commit 76f53a0e39
6 changed files with 20 additions and 3 deletions

View File

@@ -654,6 +654,7 @@ DEFAULT_USE_PROFILE=0
DEFAULT_USE_DEBUG_FLAG=0
DEFAULT_USE_DEBUG_INFO=0
DEFAULT_USE_MEM_TRACING=0
DEFAULT_USE_DMALLOC=0
DEFAULT_USE_ZLIB=1
DEFAULT_USE_GDK_IMLIB=1
@@ -736,6 +737,10 @@ AC_OVERRIDES(mem_tracing,mem_tracing,
**--with-mem_traing create code with memory tracing,
USE_MEM_TRACING)
AC_OVERRIDES(dmalloc,dmalloc,
**--with-dmalloc use dmalloc memory debug library (www.letters.com/dmalloc/),
USE_DMALLOC)
AC_OVERRIDES(profile,profile,
**--with-profile create code with profiling information included,
USE_PROFILE)
@@ -1042,6 +1047,12 @@ if test "$USE_MEM_TRACING" = 1 ; then
dnl AC_DEFINE_UNQUOTED(USE_GLOBAL_MEMORY_OPERATORS,$USE_MEM_TRACING)
fi
EXTRA_LINK=
if test "$USE_DMALLOC" = 1 ; then
EXTRA_LINK="$EXTRA_LINK -ldmalloc"
fi
AC_SUBST(EXTRA_LINK)
PROFILE=
if test "$USE_PROFILE" = 1 ; then
PROFILE="-pg"