diff options
author | stanton <stanton> | 1999-05-07 20:06:52 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-05-07 20:06:52 (GMT) |
commit | 3d35353fe96d8703f973e4410629c560ff3b1611 (patch) | |
tree | 87c14c8609425bd9b509ec094e68f63459a52835 /win/winDumpExts.c | |
parent | acaa514d52faca3a62281eb1e4d58c6a33657ca4 (diff) | |
download | tcl-3d35353fe96d8703f973e4410629c560ff3b1611.zip tcl-3d35353fe96d8703f973e4410629c560ff3b1611.tar.gz tcl-3d35353fe96d8703f973e4410629c560ff3b1611.tar.bz2 |
* win/winDumpExts.c:
* win/makefile.vc: Changed to emit library name in defs
file. [Bug: 1998]
Diffstat (limited to 'win/winDumpExts.c')
-rw-r--r-- | win/winDumpExts.c | 3 |
1 files changed, 2 insertions, 1 deletions
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"); } |