diff options
author | Ruslan Gazizov <ruslan_ufa@rambler.ru> | 2010-04-20 16:30:10 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-04-20 16:30:10 +0200 |
commit | 2164b6b463447be71ba0f0f3a7c432a963f745f9 (patch) | |
tree | 144194bcbf0ba58399d929c19f6b9b90a7972039 /lib | |
parent | 7af5e3c39e7399f3a1c2576b575c8aa8781d9f2b (diff) |
replaced wsock32.lib usage with ws2_32.lib in MSVC makefiles
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.vc6 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 2262444e3..d1a9f8d49 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1999 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1999 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -18,7 +18,6 @@ # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
# KIND, either express or implied.
#
-# $Id: Makefile.am,v 1.139 2008-11-03 08:50:58 bagder Exp $
###########################################################################
#
# Makefile for building libcurl with MSVC6
@@ -101,7 +100,7 @@ LFLAGS = /nologo /machine:$(MACHINE) SSLLIBS = libeay32.lib ssleay32.lib
ZLIBLIBSDLL= zdll.lib
ZLIBLIBS = zlib.lib
-WINLIBS = wsock32.lib wldap32.lib
+WINLIBS = ws2_32.lib wldap32.lib
CFLAGS = $(CFLAGS)
CFGSET = FALSE
|