diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-24 13:02:33 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-24 13:02:33 +0000 |
commit | f0e887952d8d843c4bac14b5db9ae1841f51c736 (patch) | |
tree | b60b12cb49343803e6277793dcb1cd258cbc3a0e | |
parent | ced86759028df271cd7acc93b02b06be2a86a1da (diff) |
Include <openssl/opensslconf.h> - currently ssl.h is relying on it being
pulled in elsewhere, even though it is makes use of the OPENSSL_NO_*
defines. While here, remove kssl.h since it is a no-op.
ok beck@ miod@
-rw-r--r-- | lib/libssl/ssl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 98c7cfaa380..9744d9783cd 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -143,6 +143,8 @@ #ifndef HEADER_SSL_H #define HEADER_SSL_H +#include <openssl/opensslconf.h> + #ifndef OPENSSL_NO_COMP #include <openssl/comp.h> #endif @@ -160,7 +162,6 @@ #include <openssl/pem.h> #include <openssl/hmac.h> -#include <openssl/kssl.h> #include <openssl/safestack.h> #ifdef __cplusplus |