diff options
author | davygrvy <davygrvy@pobox.com> | 2004-01-15 22:20:38 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-01-15 22:20:38 (GMT) |
commit | 1670aa41a074dca8bcb56402cb91c1970a588934 (patch) | |
tree | eb1de93edebc79dde8f9d4b03f70942a9f5dc83f /win/makefile.vc | |
parent | 9b53208dd029316e18144d8dc5f6973169e1912a (diff) | |
download | tcl-1670aa41a074dca8bcb56402cb91c1970a588934.zip tcl-1670aa41a074dca8bcb56402cb91c1970a588934.tar.gz tcl-1670aa41a074dca8bcb56402cb91c1970a588934.tar.bz2 |
* win/tclWinReg.c: Placed the requirement for advapi.lib
into the object file itself with #paragma comment (lib, ...)
when built with VC++. This will simplify linking for users of the
static library.
* win/makefile.vc: Removed 'advapi.lib' from $(baselibs).
Diffstat (limited to 'win/makefile.vc')
-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 fa2bc52..86f481f 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.115 2004/01/10 00:24:55 davygrvy Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.116 2004/01/15 22:20:38 davygrvy Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -421,7 +421,7 @@ dlllflags = $(lflags) -dll conlflags = $(lflags) -subsystem:console guilflags = $(lflags) -subsystem:windows -baselibs = kernel32.lib advapi32.lib user32.lib +baselibs = kernel32.lib user32.lib #--------------------------------------------------------------------- |