diff options
author | hobbs <hobbs> | 2001-06-28 01:22:21 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-06-28 01:22:21 (GMT) |
commit | 293dbdc050e3bd444292641282727a0bd24eef27 (patch) | |
tree | 913c84ddcaadd7359ee726c2c7be0a8aeb368389 /unix/Makefile.in | |
parent | 2b6587fc6cf0bc144393a46fcf12967e8cdcbde6 (diff) | |
download | tcl-293dbdc050e3bd444292641282727a0bd24eef27.zip tcl-293dbdc050e3bd444292641282727a0bd24eef27.tar.gz tcl-293dbdc050e3bd444292641282727a0bd24eef27.tar.bz2 |
* generic/tclInt.h:
* generic/tclObj.c:
* unix/Makefile.in: added a -DPURIFY mode that makes Tcl_Obj's
allocated and free singularly (instead of in alloc in blocks and
never free) to allow checkers like Purify to operate better.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 794a265..41c5b08 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.78 2001/06/27 01:53:18 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.79 2001/06/28 01:22:21 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -230,8 +230,8 @@ DLTEST_DIR = @TCL_SRC_DIR@/unix/dltest # Must be absolute to so the corresponding tcltest's tcl_library is absolute. TCL_BUILDTIME_LIBRARY = @TCL_SRC_DIR@/library -#CC = purify -best-effort @CC@ CC = @CC@ +#CC = purify -best-effort @CC@ -DPURIFY #---------------------------------------------------------------- # The information below should be usable as is. The configure |