From cd15cb4d21fce81c94bc16f991c4bb1c73e71bfe Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 6 Mar 2018 21:04:11 +0100 Subject: [PATCH] opensslconf.h.in: Use all the "openssl_api_defines" Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5533) --- include/openssl/opensslconf.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openssl/opensslconf.h.in b/include/openssl/opensslconf.h.in index 16aa82e631..dc36a74f6d 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}}) { -- GitLab