From f3a904185129f04826c7f4c511598f8885c740b1 Mon Sep 17 00:00:00 2001 From: Remo E Date: Fri, 3 Apr 2015 12:00:06 +0200 Subject: [PATCH] MSVC: remove of winsock dependency --- lib/Makefile.msvc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Makefile.msvc b/lib/Makefile.msvc index ae009308..edc6d740 100644 --- a/lib/Makefile.msvc +++ b/lib/Makefile.msvc @@ -37,7 +37,7 @@ INSTALL_HDR = $(VC_ROOT)/include TARGETS = nghttp2.lib nghttp2.dll nghttp2_imp.lib \ nghttp2d.lib nghttp2d.dll nghttp2d_imp.lib -EXT_LIBS = ws2_32.lib +EXT_LIBS = OBJ_DIR = MSVC_obj @@ -45,7 +45,7 @@ NGHTTP2_PDB_R = $(OBJ_DIR)/nghttp2.pdb NGHTTP2_PDB_D = $(OBJ_DIR)/nghttp2d.pdb CC = cl -CFLAGS = -I./includes -DHAVE_WINSOCK2_H -Dssize_t=long -D_U_="" +CFLAGS = -I./includes -Dssize_t=long -D_U_="" CFLAGS_R = -nologo -MD -W3 -Zi -Fd./$(NGHTTP2_PDB_R) CFLAGS_D = -nologo -MDd -W3 -Zi -Fd./$(NGHTTP2_PDB_D) \ @@ -246,4 +246,4 @@ depend: includes/nghttp2/nghttp2ver.h sed -e $(REPLACE_D) .depend.tmp >> .depend.MSVC rm -f .depend.tmp --include .depend.MSVC \ No newline at end of file +-include .depend.MSVC