diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-07-30 17:08:26 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-07-30 17:08:26 +0000 |
commit | de55038e3352d62fbc89bf24aea355f0332fbb24 (patch) | |
tree | b9580fc6927060b4128322fe563299bb21c2337b | |
parent | ea908c23ae598be7132448beece49196b2f7cf60 (diff) | |
download | curl-de55038e3352d62fbc89bf24aea355f0332fbb24.tar.gz |
Properly set USE_SSL on OS/400
-rw-r--r-- | lib/setup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/setup.h b/lib/setup.h index 2fcd83ecb..87f50e07a 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -340,8 +340,8 @@ int netware_init(void); #define HAVE_INET_NTOA_R_2_ARGS 1 #endif -#if defined(USE_GNUTLS) || defined(USE_SSLEAY) || defined(USE_NSS) -#define USE_SSL /* Either OpenSSL || GnuTLS || NSS */ +#if defined(USE_GNUTLS) || defined(USE_SSLEAY) || defined(USE_NSS) || defined(USE_QSOSSL) +#define USE_SSL /* SSL support has been enabled */ #endif #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_NTLM) |