winbuild: fix IPv6 enabled build

The existing check was wrong so IPv6 support would never be enabled
This commit is contained in:
Jan Ehrhardt 2012-05-22 11:10:27 +02:00 committed by Daniel Stenberg
parent fdf2517bd9
commit 9258b84673

View 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