From e593fed3786e9e5dcfe5a1e43181dc91c8e3ff27 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Thu, 25 Feb 2016 11:39:59 -0500 Subject: [PATCH] Rename opensslfeatures.h to opensslconf.h. Some software #includes opensslconf.h which typically contains settings that we put in opensslfeatures.h (a header name not in OpenSSL). Rename it to opensslconf.h. Change-Id: Icd21dde172e5e489ce90dd5c16ae4d2696909fb6 Reviewed-on: https://boringssl-review.googlesource.com/7216 Reviewed-by: Adam Langley --- include/openssl/base.h | 2 +- include/openssl/{opensslfeatures.h => opensslconf.h} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename include/openssl/{opensslfeatures.h => opensslconf.h} (93%) diff --git a/include/openssl/base.h b/include/openssl/base.h index 79f02cd4d..f1da61a07 100644 --- a/include/openssl/base.h +++ b/include/openssl/base.h @@ -60,7 +60,7 @@ #include #include -#include +#include #if defined(__cplusplus) extern "C" { diff --git a/include/openssl/opensslfeatures.h b/include/openssl/opensslconf.h similarity index 93% rename from include/openssl/opensslfeatures.h rename to include/openssl/opensslconf.h index c3f97d5a4..bf65fc3b2 100644 --- a/include/openssl/opensslfeatures.h +++ b/include/openssl/opensslconf.h @@ -15,8 +15,8 @@ /* This header is provided in order to make compiling against code that expects OpenSSL easier. */ -#ifndef OPENSSL_HEADER_OPENSSLFEATURES_H -#define OPENSSL_HEADER_OPENSSLFEATURES_H +#ifndef OPENSSL_HEADER_OPENSSLCONF_H +#define OPENSSL_HEADER_OPENSSLCONF_H #define OPENSSL_NO_BF @@ -57,4 +57,4 @@ #define OPENSSL_NO_WHIRLPOOL -#endif /* OPENSSL_HEADER_OPENSSLFEATURES_H */ +#endif /* OPENSSL_HEADER_OPENSSLCONF_H */