diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | win/makefile.vc | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ 2007-11-29 Jeff Hobbs <jeffh@ActiveState.com> + * win/makefile.vc: add ws2_32.lib to baselibs * win/configure, win/tcl.m4: add ws2_32.lib / -lws2_32 to build. * win/tclWinSock.c: remove dyn loading of winsock, assume that it is always available now. 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" |