diff options
author | stanton <stanton@noemail.net> | 1999-05-07 20:06:51 (GMT) |
---|---|---|
committer | stanton <stanton@noemail.net> | 1999-05-07 20:06:51 (GMT) |
commit | 8debfd072bd934e8eabc6b5ff18f31df2d688257 (patch) | |
tree | 87c14c8609425bd9b509ec094e68f63459a52835 /win | |
parent | c5ab724da0a832db32a75da833e9fa9f9befba3e (diff) | |
download | tcl-8debfd072bd934e8eabc6b5ff18f31df2d688257.zip tcl-8debfd072bd934e8eabc6b5ff18f31df2d688257.tar.gz tcl-8debfd072bd934e8eabc6b5ff18f31df2d688257.tar.bz2 |
* win/winDumpExts.c:
* win/makefile.vc: Changed to emit library name in defs
file. [Bug: 1998]
FossilOrigin-Name: 3518024b7f92f961bb2e7b26b7eb7c0fa288ed0e
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 7 | ||||
-rw-r--r-- | win/winDumpExts.c | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 39e8efe..8b662a3 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.32 1999/05/05 20:29:04 stanton Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.33 1999/05/07 20:06:52 stanton Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -61,8 +61,7 @@ NODEBUG = 1 # needed when using Purify. # #DEBUGDEFINES = -DTCL_MEM_DEBUG -DTCL_COMPILE_DEBUG -DTCL_COMPILE_STATS -#DEBUGDEFINES = -DUSE_TCLALLOC=0 -DEBUGDEFINES = -DTCL_COMPILE_DEBUG +#DEBUGDEFINES = -DUSE_TCL_ALLOC=0 ###################################################################### # Do not modify below this line @@ -334,7 +333,7 @@ setup: @$(MKDIR) $(OUTDIR) $(DUMPEXTS): $(WINDIR)\winDumpExts.c - $(cc32) $(CON_CFLAGS) -Fo$(TMPDIR)\ $? + $(cc32) $(CON_CFLAGS) -DTCL_LIB_VERSION=$(VERSION) -Fo$(TMPDIR)\ $? set LIB="$(TOOLS32)\lib" $(link32) $(ldebug) $(conlflags) $(guilibs) -out:$@ \ $(TMPDIR)\winDumpExts.obj diff --git a/win/winDumpExts.c b/win/winDumpExts.c index 80f7c87..1ea4c12 100644 --- a/win/winDumpExts.c +++ b/win/winDumpExts.c @@ -19,7 +19,7 @@ * compiler other than Visual C++. *---------------------------------------------------------------------- * - * RCS: @(#) $Id: winDumpExts.c,v 1.3 1999/02/02 22:32:17 stanton Exp $ + * RCS: @(#) $Id: winDumpExts.c,v 1.4 1999/05/07 20:06:52 stanton Exp $ */ #include <windows.h> @@ -474,6 +474,7 @@ main(int argc, char **argv) if (arg == argc) { goto Usage; } + fprintf(fout, "LIBRARY TCL%d\n", TCL_LIB_VERSION); fprintf(fout, "EXPORTS\n"); } |