summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2008-04-20 19:57:03 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2008-04-20 19:57:03 (GMT)
commit765719e0119f14483f903787b6edc92219c4647f (patch)
treeb54c2a8293fe1de6401297bf24828bd7b94abd3d
parent714b003638f256fba3960819b2017df1297f0cc6 (diff)
downloadtk-765719e0119f14483f903787b6edc92219c4647f.zip
tk-765719e0119f14483f903787b6edc92219c4647f.tar.gz
tk-765719e0119f14483f903787b6edc92219c4647f.tar.bz2
Include ws2_32 in the link list [Bug 19200872]
-rw-r--r--ChangeLog1
-rw-r--r--win/makefile.vc4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e83856..920f88b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2008-04-20 Pat Thoyts <patthoyts@users.sourceforge.net>
+ * win/makefile.vc: Include ws2_32 in the link list [Bug 1900872]
* doc/menu.n: Minor change regarding the system menu [Bug 1887169]
* doc/button.n: Minor clarification of button flash [Bug 1926223]
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"