mirror of
https://github.com/curl/curl.git
synced 2026-07-23 13:47:16 +03:00
makefile.m32: fix to allow -ssh2-winssl combination
In makefile.m32, option -ssh2 (libssh2) automatically implied -ssl (OpenSSL) option, with no way to override it with -winssl. Since both libssh2 and curl support using Windows's built-in SSL backend, modify the logic to allow that combination.
This commit is contained in:
parent
20de9b4f09
commit
05401b9a3b
2 changed files with 4 additions and 0 deletions
|
|
@ -153,7 +153,9 @@ ZLIB = 1
|
|||
endif
|
||||
ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
|
||||
SSH2 = 1
|
||||
ifneq ($(findstring -winssl,$(CFG)),-winssl)
|
||||
SSL = 1
|
||||
endif
|
||||
ZLIB = 1
|
||||
endif
|
||||
ifeq ($(findstring -ssl,$(CFG)),-ssl)
|
||||
|
|
|
|||
|
|
@ -168,7 +168,9 @@ ZLIB = 1
|
|||
endif
|
||||
ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
|
||||
SSH2 = 1
|
||||
ifneq ($(findstring -winssl,$(CFG)),-winssl)
|
||||
SSL = 1
|
||||
endif
|
||||
ZLIB = 1
|
||||
endif
|
||||
ifeq ($(findstring -ssl,$(CFG)),-ssl)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue