aboutsummaryrefslogtreecommitdiff
path: root/winbuild
diff options
context:
space:
mode:
authorJan Ehrhardt <phpdev@ehrhardt.nl>2012-05-22 11:10:27 +0200
committerDaniel Stenberg <daniel@haxx.se>2012-05-22 11:12:25 +0200
commit9258b84673aa2cb773b1b888389d9af32d6192ef (patch)
tree475b1eb9bfcca01d1418c552babec92d353355ba /winbuild
parentfdf2517bd906e058c45c1f9290bb54326e5f7266 (diff)
winbuild: fix IPv6 enabled build
The existing check was wrong so IPv6 support would never be enabled
Diffstat (limited to 'winbuild')
-rw-r--r--winbuild/MakefileBuild.vc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winbuild/MakefileBuild.vc b/winbuild/MakefileBuild.vc
index 421690ca7..d44792279 100644
--- a/winbuild/MakefileBuild.vc
+++ b/winbuild/MakefileBuild.vc
@@ -163,7 +163,7 @@ CFLAGS = $(CFLAGS) /DUSE_WIN32_IDN
LFLAGS = $(LFLAGS) Normaliz.lib
!ENDIF
-!IF "$(USE_IPV6)"=="yes"
+!IF "$(USE_IPV6)"=="true"
CFLAGS = $(CFLAGS) /DUSE_IPV6
USE_IPV6=true
!ENDIF