mirror of
https://github.com/curl/curl.git
synced 2026-04-15 02:21:41 +03:00
amiga: Fix CA certificate paths for AmiSSL and MorphOS
AmiSSL stores certificates in `AmiSSL:Certs` and MorphOS stores them in `MOSSYS:Data/SSL/curl-ca-bundle.crt`. Closes https://github.com/curl/curl/pull/11059
This commit is contained in:
parent
b637166092
commit
b8d7746e3c
1 changed files with 8 additions and 0 deletions
|
|
@ -87,7 +87,15 @@
|
|||
#define PACKAGE_STRING "curl -"
|
||||
#define PACKAGE_TARNAME "curl"
|
||||
#define PACKAGE_VERSION "-"
|
||||
|
||||
#if defined(USE_AMISSL)
|
||||
#define CURL_CA_PATH "AmiSSL:Certs"
|
||||
#elif defined(__MORPHOS__)
|
||||
#define CURL_CA_BUNDLE "MOSSYS:Data/SSL/curl-ca-bundle.crt"
|
||||
#else
|
||||
#define CURL_CA_BUNDLE "s:curl-ca-bundle.crt"
|
||||
#endif
|
||||
|
||||
#define STDC_HEADERS 1
|
||||
#define TIME_WITH_SYS_TIME 1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue