diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-05-27 21:11:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-05-27 21:11:11 +0000 |
commit | bf085e2c4b314a6cef38adfe6c9d84ea1b7fa0f3 (patch) | |
tree | 47400a34266247208c9db14b9140480e23dd1ee5 /lib | |
parent | ce1a97d6c80a9eb9eb146e0d4f5a37deb3e5d9d0 (diff) |
- Frank McGeough provided a small OpenSSL #include fix to make libcurl compile
fine with Nokia 5th edition 1.0 SDK for Symbian.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssluse.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index a86c2808b..6cb2c8462 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -63,6 +63,8 @@ #ifdef USE_OPENSSL #include <openssl/rand.h> #include <openssl/x509v3.h> +#include <openssl/dsa.h> +#include <openssl/dh.h> #else #include <rand.h> #include <x509v3.h> @@ -89,6 +91,7 @@ #if OPENSSL_VERSION_NUMBER >= 0x00907001L /* ENGINE_load_private_key() takes four arguments */ #define HAVE_ENGINE_LOAD_FOUR_ARGS +#include <openssl/ui.h> #else /* ENGINE_load_private_key() takes three arguments */ #undef HAVE_ENGINE_LOAD_FOUR_ARGS |