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/Makefile.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/Makefile.in')
-rw-r--r-- | win/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 0597d03..940e106 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.64 2002/08/20 15:33:34 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.65 2002/08/22 00:52:33 andreas_kupries Exp $ VERSION = @TCL_VERSION@ @@ -85,7 +85,7 @@ CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@ #CFLAGS = $(CFLAGS_DEBUG) #CFLAGS = $(CFLAGS_OPTIMIZE) #CFLAGS = $(CFLAGS_DEBUG) $(CFLAGS_OPTIMIZE) -CFLAGS = @CFLAGS@ @CFLAGS_DEFAULT@ +CFLAGS = @CFLAGS@ @CFLAGS_DEFAULT@ @MEM_DEBUG_FLAGS@ # To enable compilation debugging reverse the comment characters on # one of the following lines. |