diff options
author | Attila Szakacs <attila.szakacs@oneidentity.com> | 2020-06-25 13:40:33 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-06-27 09:21:42 +0200 |
commit | b1f9db698011e5a178d53483eccfd0a44f132baf (patch) | |
tree | be24284a71594ba7caf53c3d4af70f9440089e09 /Configurations | |
parent | Reduce the security bits for MD5 and SHA1 based signatures in TLS (diff) | |
download | openssl-b1f9db698011e5a178d53483eccfd0a44f132baf.tar.xz openssl-b1f9db698011e5a178d53483eccfd0a44f132baf.zip |
Configuration: do not overwrite BASE_unix ex_libs in AIX
BASE_unix sets ex_libs to `-lz` based the on zlib linking.
AIX platforms overwrote this instead of adding to it.
CLA: Trivial
Signed-off-by: Attila Szakacs <attila.szakacs@oneidentity.com>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12271)
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/10-main.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 3332f03765..0313ad0a37 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -1173,7 +1173,7 @@ my %targets = ( CFLAGS => picker(debug => "-O0 -g", release => "-O"), cflags => add(threads("-pthread")), - ex_libs => threads("-pthread"), + ex_libs => add(threads("-pthread")), bn_ops => "BN_LLONG RC4_CHAR", asm_arch => 'ppc32', perlasm_scheme => "aix32", @@ -1187,7 +1187,7 @@ my %targets = ( CFLAGS => picker(debug => "-O0 -g", release => "-O"), cflags => combine("-maix64", threads("-pthread")), - ex_libs => threads("-pthread"), + ex_libs => add(threads("-pthread")), bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR", asm_arch => 'ppc64', perlasm_scheme => "aix64", @@ -1204,7 +1204,7 @@ my %targets = ( cflags => combine("-q32 -qmaxmem=16384 -qro -qroconst", threads("-qthreaded")), cppflags => threads("-D_THREAD_SAFE"), - ex_libs => threads("-lpthreads"), + ex_libs => add(threads("-lpthreads")), bn_ops => "BN_LLONG RC4_CHAR", asm_arch => 'ppc32', perlasm_scheme => "aix32", @@ -1220,7 +1220,7 @@ my %targets = ( cflags => combine("-q64 -qmaxmem=16384 -qro -qroconst", threads("-qthreaded")), cppflags => threads("-D_THREAD_SAFE"), - ex_libs => threads("-lpthreads"), + ex_libs => add(threads("-lpthreads")), bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR", asm_arch => 'ppc64', perlasm_scheme => "aix64", |