summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorandreas_kupries <andreas_kupries@noemail.net>2002-08-22 00:52:31 (GMT)
committerandreas_kupries <andreas_kupries@noemail.net>2002-08-22 00:52:31 (GMT)
commit2b45fc0f9fdc2dde3f93b1e2d4d20c69f0d973da (patch)
treeeb9be0956d45a79838d6627d2f5e00347786c960 /unix/Makefile.in
parent6797185c4f3a03226c3932619aaedfd16ff2a8b5 (diff)
downloadtcl-2b45fc0f9fdc2dde3f93b1e2d4d20c69f0d973da.zip
tcl-2b45fc0f9fdc2dde3f93b1e2d4d20c69f0d973da.tar.gz
tcl-2b45fc0f9fdc2dde3f93b1e2d4d20c69f0d973da.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. FossilOrigin-Name: 26d5a58144ac9962be2a5880c2acedc8139e95a4
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 0ae9013..53b1deb 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.113 2002/08/20 15:33:33 dgp Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.114 2002/08/22 00:52:32 andreas_kupries Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -137,7 +137,7 @@ NOTIFY_OBJS = tclUnixNotfy.o
# lines. Warning: if you enable memory debugging, you must do it
# *everywhere*, including all the code that calls Tcl, and you must use
# ckalloc and ckfree everywhere instead of malloc and free.
-MEM_DEBUG_FLAGS =
+MEM_DEBUG_FLAGS = @MEM_DEBUG_FLAGS@
#MEM_DEBUG_FLAGS = -DTCL_MEM_DEBUG
TCL_STUB_LIB_FILE = @TCL_STUB_LIB_FILE@