diff options
author | hobbs <hobbs> | 2002-10-22 18:56:28 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-10-22 18:56:28 (GMT) |
commit | 0cbe334420539d186cd5ff193bc294db21a6ae3f (patch) | |
tree | e4451ce772d44695b34a70b31e822a2aeef251cb /win/Makefile.in | |
parent | cd83bd4f9b2b62007d4f9eed42dffba1e49e70f0 (diff) | |
download | tcl-0cbe334420539d186cd5ff193bc294db21a6ae3f.zip tcl-0cbe334420539d186cd5ff193bc294db21a6ae3f.tar.gz tcl-0cbe334420539d186cd5ff193bc294db21a6ae3f.tar.bz2 |
* win/Makefile.in: removed @MEM_DEBUG_FLAGS@ subst.
* win/configure: regen
* win/configure.in: removed SC_ENABLE_MEMDEBUG call
* win/tcl.m4: replaced SC_ENABLE_MEMDEBUG with a more intelligent
SC_ENABLE_SYMBOLS that takes yes|no|mem|compile|all as options now.
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 a347190..70b4cc9 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.66 2002/10/18 23:58:41 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.67 2002/10/22 18:56:28 hobbs 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@ @MEM_DEBUG_FLAGS@ +CFLAGS = @CFLAGS@ @CFLAGS_DEFAULT@ # To enable compilation debugging reverse the comment characters on # one of the following lines. |