diff options
author | hobbs <hobbs> | 2007-11-30 01:10:34 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-11-30 01:10:34 (GMT) |
commit | 4c7d0a5db69c14fea63dfe1141cf458c86cee562 (patch) | |
tree | cce674deae58fb3c8fdb4a6667ee3835cf15fb51 /win/makefile.vc | |
parent | 10b3f39c05256d03baa5d4ad857c21a4a925d6fe (diff) | |
download | tcl-4c7d0a5db69c14fea63dfe1141cf458c86cee562.zip tcl-4c7d0a5db69c14fea63dfe1141cf458c86cee562.tar.gz tcl-4c7d0a5db69c14fea63dfe1141cf458c86cee562.tar.bz2 |
win/makefile.vc: add ws2_32.lib to 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 c4d4d60..cfff601 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.172 2007/10/16 20:49:12 davygrvy Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.173 2007/11/30 01:10:34 hobbs Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -476,7 +476,7 @@ dlllflags = $(lflags) -dll conlflags = $(lflags) -subsystem:console guilflags = $(lflags) -subsystem:windows -baselibs = kernel32.lib user32.lib +baselibs = kernel32.lib user32.lib ws2_32.lib # Avoid 'unresolved external symbol __security_cookie' errors. # c.f. http://support.microsoft.com/?id=894573 !if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64" |