Use Windows native ssl instead of openssl.
Fixes #147 Change-Id: I41193adbab5cd979ca958131cd4f148dde5e1f2e
This commit is contained in:
parent
e7c0dbf09d
commit
9ed8303a06
|
@ -16,7 +16,6 @@
|
|||
'defines': [
|
||||
'HTTP_ONLY',
|
||||
'USE_IPV6',
|
||||
'USE_OPENSSL'
|
||||
],
|
||||
'include_dirs': [
|
||||
'config',
|
||||
|
@ -37,6 +36,7 @@
|
|||
'defines': [
|
||||
'HAVE_CONFIG_H',
|
||||
'CURL_CA_BUNDLE="<!(config/linux/find_curl_ca_bundle.sh)"',
|
||||
'USE_OPENSSL',
|
||||
],
|
||||
'include_dirs': [
|
||||
'config/linux',
|
||||
|
@ -51,6 +51,7 @@
|
|||
'defines': [
|
||||
'HAVE_CONFIG_H',
|
||||
'CURL_CA_BUNDLE="<!(config/mac/find_curl_ca_bundle.sh)"',
|
||||
'USE_OPENSSL',
|
||||
],
|
||||
'include_dirs': [
|
||||
'config/mac',
|
||||
|
@ -61,10 +62,13 @@
|
|||
'direct_dependent_settings': {
|
||||
'defines': [
|
||||
'CURL_DISABLE_LDAP',
|
||||
'USE_SCHANNEL',
|
||||
'USE_WINDOWS_SSPI',
|
||||
],
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'-lws2_32.lib',
|
||||
'-lCrypt32.lib',
|
||||
],
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue