winbuild: fix IPv6 enabled build
authorJan Ehrhardt <phpdev@ehrhardt.nl>
Tue, 22 May 2012 09:10:27 +0000 (11:10 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 22 May 2012 09:12:25 +0000 (11:12 +0200)
The existing check was wrong so IPv6 support would never be enabled

winbuild/MakefileBuild.vc

index 421690c..d447922 100644 (file)
@@ -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