diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-03 00:49:34 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-03 00:49:34 (GMT) |
commit | 7d67607b8b6a37ca1459c05b5cfe6327f6f03251 (patch) | |
tree | 72f653586620f9d4ceedcce00757d781eb015c6b | |
parent | 30f141b8ce1169b5a8a4831880a178fdd7d0803b (diff) | |
download | tcl-7d67607b8b6a37ca1459c05b5cfe6327f6f03251.zip tcl-7d67607b8b6a37ca1459c05b5cfe6327f6f03251.tar.gz tcl-7d67607b8b6a37ca1459c05b5cfe6327f6f03251.tar.bz2 |
* win/makefile.vc: Added -Zl (zee el) to tclStubLib.c compile line
to make sure the tclstub84.lib static library is built without
requiring a specific C-runtime library at link-time for the end-use
developer. It has been noted on c.l.t that this trips many first
time users trying to make extensions.
[Patch: 403533]
-rw-r--r-- | win/makefile.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 9b01e08..80f64a8 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -6,7 +6,7 @@ # Copyright (c) 1995-1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. # -# RCS: @(#) $Id: makefile.vc,v 1.62 2001/08/22 23:55:00 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.63 2001/09/03 00:49:34 davygrvy Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -491,7 +491,7 @@ $(TMPDIR)\tclWinDde.obj : $(WINDIR)\tclWinDde.c # be built as DLL objects but none of the symbols should be exported $(TMPDIR)\tclStubLib.obj : $(GENERICDIR)\tclStubLib.c - $(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -Fo$@ $? + $(cc32) $(TCL_CFLAGS) -Zl -DSTATIC_BUILD -Fo$@ $? # Dedependency rules |