diff options
author | andreas_kupries <akupries@shaw.ca> | 2002-08-22 00:52:31 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2002-08-22 00:52:31 (GMT) |
commit | 98eb85234663ad8fcfe10d58847a8f79049fe77e (patch) | |
tree | eb9be0956d45a79838d6627d2f5e00347786c960 /win/configure.in | |
parent | 9ce269e7ddacdfdd9a7a4d22cfb290c9c28c090c (diff) | |
download | tcl-98eb85234663ad8fcfe10d58847a8f79049fe77e.zip tcl-98eb85234663ad8fcfe10d58847a8f79049fe77e.tar.gz tcl-98eb85234663ad8fcfe10d58847a8f79049fe77e.tar.bz2 |
* win/Makefile.in (CFLAGS):
* unix/Makefile.in (MEM_DEBUG_FLAGS): Added usage of @MEM_DEBUG_FLAGS@.
* win/configure.in:
* unix/configure.in: Added usage of SC_ENABLE_MEMDEBUG.
* win/tcl.m4:
* unix/tcl.m4: Added macro SC_ENABLE_MEMDEBUG. Allows a user of
configure to (de)activate memory validation and debugging
(TCL_MEM_DEBUG). No need to modify the makefile anymore.
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/configure.in b/win/configure.in index ecc64d0..143143a 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.52 2002/08/20 15:33:34 dgp Exp $ +# RCS: @(#) $Id: configure.in,v 1.53 2002/08/22 00:52:34 andreas_kupries Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.13) @@ -147,6 +147,7 @@ SC_CONFIG_CFLAGS #-------------------------------------------------------------------- SC_ENABLE_SYMBOLS +SC_ENABLE_MEMDEBUG TCL_DBGX=${DBGX} |