Commit 9258b846 authored by Jan Ehrhardt's avatar Jan Ehrhardt Committed by Daniel Stenberg
Browse files

winbuild: fix IPv6 enabled build

The existing check was wrong so IPv6 support would never be enabled
parent fdf2517b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -163,7 +163,7 @@ CFLAGS = $(CFLAGS) /DUSE_WIN32_IDN
LFLAGS    = $(LFLAGS) Normaliz.lib
LFLAGS    = $(LFLAGS) Normaliz.lib
!ENDIF
!ENDIF


!IF "$(USE_IPV6)"=="yes"
!IF "$(USE_IPV6)"=="true"
CFLAGS = $(CFLAGS) /DUSE_IPV6
CFLAGS = $(CFLAGS) /DUSE_IPV6
USE_IPV6=true
USE_IPV6=true
!ENDIF
!ENDIF