diff options
author | 2016-12-30 15:10:57 +0000 | |
---|---|---|
committer | 2016-12-30 15:10:57 +0000 | |
commit | a401edeeeae7767fc687e0002c90352d9ef9e8db (patch) | |
tree | 0d6f203dda615834a341036a79eda98d44c737fc /lib/libssl/ssl3.h | |
parent | Place M_PKCS12_* compatibility macros under #ifndef LIBRESSL_INTERNAL. (diff) | |
download | wireguard-openbsd-a401edeeeae7767fc687e0002c90352d9ef9e8db.tar.xz wireguard-openbsd-a401edeeeae7767fc687e0002c90352d9ef9e8db.zip |
Explicitly include openssl/opensslconf.h in headers that use OPENSSL_NO_*
defines - do not rely on another heading making those available for us.
Diffstat (limited to 'lib/libssl/ssl3.h')
-rw-r--r-- | lib/libssl/ssl3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/ssl3.h b/lib/libssl/ssl3.h index 90fcae7914e..c52c0a780eb 100644 --- a/lib/libssl/ssl3.h +++ b/lib/libssl/ssl3.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl3.h,v 1.42 2016/12/21 16:44:31 jsing Exp $ */ +/* $OpenBSD: ssl3.h,v 1.43 2016/12/30 15:10:57 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -117,6 +117,7 @@ #ifndef HEADER_SSL3_H #define HEADER_SSL3_H +#include <openssl/opensslconf.h> #include <openssl/buffer.h> #include <openssl/evp.h> #include <openssl/ssl.h> |