diff options
author | hobbs <hobbs> | 2002-10-10 05:01:20 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-10-10 05:01:20 (GMT) |
commit | ea99cee25a420695da7bd29c5192575f9d34907d (patch) | |
tree | 0eaca26b5a18cb94a6f3ece2dad91a6ff3a17e38 /unix/Makefile.in | |
parent | 5d44339297483bc5ad5e6059dd8a959efc44ae73 (diff) | |
download | tk-ea99cee25a420695da7bd29c5192575f9d34907d.zip tk-ea99cee25a420695da7bd29c5192575f9d34907d.tar.gz tk-ea99cee25a420695da7bd29c5192575f9d34907d.tar.bz2 |
* unix/README: doc'ed --enable-symbols options.
* unix/Makefile.in: comment docs
* unix/configure: regen
* unix/tcl.m4: replaced SC_ENABLE_MEMDEBUG with a more intelligent
SC_ENABLE_SYMBOLS that takes yes|no|mem|all as options now.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index b15c573..15781f4 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.84 2002/09/27 00:47:26 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.85 2002/10/10 05:01:23 hobbs Exp $ # Current Tk version; used in various names. @@ -144,9 +144,10 @@ PROTO_FLAGS = #PROTO_FLAGS = -DNO_PROTOTYPE # To enable memory debugging reverse the comment characters on the following -# 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. +# lines. or call configure with --enable-symbols=mem +# 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 = -DTCL_MEM_DEBUG |