]> git.ipfire.org Git - thirdparty/openssl.git/commit
Fix AIX build when no-shared is passed to Configure.
authorTodd C. Miller <Todd.Miller@sudo.ws>
Thu, 31 Mar 2022 16:32:29 +0000 (10:32 -0600)
committerTomas Mraz <tomas@openssl.org>
Tue, 5 Apr 2022 07:44:38 +0000 (09:44 +0200)
commitb83c0a900f9303e0c9fd084829b791386d7c57ce
tree6029ec0eb070d4ef5ff106a407f744906f2e1692
parentf593f32eede30ead69e0a16e47a564a664171283
Fix AIX build when no-shared is passed to Configure.

AIX shared libs are also .a files so the AIX platform staticname()
appends a '_a' to the name to avoid a collision.  However, this
must not be done when no-shared is passed to Configure or the
binaries that link with -lcrypto and -lssl be unable to link as
those libraries won't exist without the '_a' suffix.

CLA: trivial

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18006)
Configurations/platform/AIX.pm