diff options
author | stanton <stanton> | 1999-03-05 20:18:02 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-03-05 20:18:02 (GMT) |
commit | 4848a73bb6c843cd8ba7e7d036ccf9c76a7ab6a4 (patch) | |
tree | 48c4d4ac8a137bb69266d3385e3c1376636de8c7 /win/makefile.vc | |
parent | bd758c72b2b9652bcd22a8856ee0bf804c80b699 (diff) | |
download | tcl-4848a73bb6c843cd8ba7e7d036ccf9c76a7ab6a4.zip tcl-4848a73bb6c843cd8ba7e7d036ccf9c76a7ab6a4.tar.gz tcl-4848a73bb6c843cd8ba7e7d036ccf9c76a7ab6a4.tar.bz2 |
* generic/tclCompile.h:
* generic/tclStubInit.c:
* generic/tclCompileDecls.h:
* generic/tclCompileStubs.c:
* generic/tclInt.decls: Added functions from tclCompile.h into a
new tclCompile interface.
* generic/tclStubs.c:
* generic/tclDecls.h:
* generic/tcl.decls: Added Tcl_InitMemory.
* generic/tclStubLib.c: Changed to define USE_TCL_STUBS and
USE_TCL_STUB_PROCS automatically.
* unix/Makefile.in: Changes to get stubs mechanism working.
* generic/tclGetDate.y: Updated to reflect tclDate.c changes.
* tools/genStubs.tcl:
* generic/tclProc.c:
* generic/tclStubInit.c:
* generic/tclTest.c:
* unix/tclUnixFile.c:
* unix/tclUnixPort.h: lint
* win/makefile.vc:
* generic/tclAlloc.c: Changed USE_NATIVEMALLOC to USE_NATIVE_MALLOC.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 2fdc05a..d25c330 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -6,7 +6,7 @@ # Copyright (c) 1995-1996 Sun Microsystems, Inc. # Copyright (c) 1998-1999 by Scriptics Corporation. # -# RCS: @(#) $Id: makefile.vc,v 1.24.4.1 1999/03/03 00:38:46 stanton Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.24.4.2 1999/03/05 20:18:09 stanton Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -53,14 +53,14 @@ NODEBUG = 1 # -DTCL_MEM_DEBUG Enables the debugging memory allocator. # -DTCL_COMPILE_DEBUG Enables byte compilation logging. # -DTCL_COMPILE_STATS Enables byte compilation statistics gathering. -# -DUSE_NATIVEMALLOC Disables the Tcl memory allocator in favor +# -DUSE_NATIVE_MALLOC Disables the Tcl memory allocator in favor # of the native malloc implementation. This is # needed when using Purify. # #DEBUGDEFINES = -DTCL_MEM_DEBUG #DEBUGDEFINES = -DTCL_MEM_DEBUG -DTCL_COMPILE_DEBUG #DEBUGDEFINES = -DTCL_MEM_DEBUG -DTCL_COMPILE_DEBUG -DTCL_COMPILE_STATS -#DEBUGDEFINES = -DUSE_NATIVEMALLOC +#DEBUGDEFINES = -DUSE_NATIVE_MALLOC ###################################################################### # Do not modify below this line @@ -456,7 +456,7 @@ package ifneeded registry 1.0 "load [list [file join $$dir .. $(TCLREGDLLNAME)]] # Regenerate the stubs files. # -stubs: +genstubs: tclsh$(VERSION) $(ROOT)\tools\genStubs.tcl $(GENERICDIR) \ $(GENERICDIR)\tcl.decls $(GENERICDIR)\tclInt.decls |