winbuild: Don't USE_WINSSL when WITH_SSL is being used

Regression of commit d39bbcfa8d when compiling against OpenSSL.
This commit is contained in:
Steve Holme 2014-06-06 14:09:59 +01:00
parent 2b2e8e0e4b
commit 8223972af2
1 changed files with 4 additions and 0 deletions

View File

@ -95,7 +95,11 @@ USE_SPNEGO = false
!ENDIF
!IFNDEF ENABLE_WINSSL
!IFDEF WITH_SSL
USE_WINSSL = false
!ELSE
USE_WINSSL = $(USE_SSPI)
!ENDIF
!ELSEIF "$(ENABLE_WINSSL)"=="yes"
USE_WINSSL = true
!ELSEIF "$(ENABLE_WINSSL)"=="no"