diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2008-04-20 19:57:03 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2008-04-20 19:57:03 (GMT) |
commit | 765719e0119f14483f903787b6edc92219c4647f (patch) | |
tree | b54c2a8293fe1de6401297bf24828bd7b94abd3d /win | |
parent | 714b003638f256fba3960819b2017df1297f0cc6 (diff) | |
download | tk-765719e0119f14483f903787b6edc92219c4647f.zip tk-765719e0119f14483f903787b6edc92219c4647f.tar.gz tk-765719e0119f14483f903787b6edc92219c4647f.tar.bz2 |
Include ws2_32 in the link list [Bug 19200872]
Diffstat (limited to 'win')
-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 079ae3b..a945084 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.120 2008/04/03 17:04:55 patthoyts Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.121 2008/04/20 19:57:03 patthoyts Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -507,7 +507,7 @@ tcllibs = $(TCLIMPLIB) tcllibs = $(TCLSTUBLIB) $(tcllibs) !endif -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" |