summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-03-06 21:04:11 +0100
committerRichard Levitte <levitte@openssl.org>2018-03-06 21:21:42 +0100
commita6356981791c37411096444e44d98bc561350300 (patch)
tree4f719e091cc9c88743a6eb4ffca65fb4d1f3074a /include
parent4044ebfe2481c240cb37cfcb0e6176fe79394db4 (diff)
opensslconf.h.in: Use all the "openssl_api_defines"
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5533) (cherry picked from commit cd15cb4d21fce81c94bc16f991c4bb1c73e71bfe)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/opensslconf.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/opensslconf.h.in b/include/openssl/opensslconf.h.in
index bec5bd09d2..e35fdfe3b4 100644
--- a/include/openssl/opensslconf.h.in
+++ b/include/openssl/opensslconf.h.in
@@ -30,7 +30,7 @@ extern "C" {
}
foreach (@{$config{openssl_api_defines}}) {
(my $macro, my $value) = $_ =~ /^(.*?)=(.*?)$/;
- $OUT .= "#define OPENSSL_MIN_API $value\n";
+ $OUT .= "#define $macro $value\n";
}
if (@{$config{openssl_algorithm_defines}}) {
foreach (@{$config{openssl_algorithm_defines}}) {