[openssl] master update
Richard Levitte
levitte at openssl.org
Mon Jun 17 14:07:47 UTC 2019
The branch master has been updated
via 26de4ec68f9c332c8d24376b986cd54954d7c6d2 (commit)
from 65dc5c3cc10af7c6f24ecd922adb7b6d17a9fe65 (commit)
- Log -----------------------------------------------------------------
commit 26de4ec68f9c332c8d24376b986cd54954d7c6d2
Author: Richard Levitte <levitte at openssl.org>
Date: Sat May 25 11:02:59 2019 +0200
Configure: AIX needs a specific DSO extension function
DSO extensions are normally derived from platform->shlibextsimple() on
Unix. This isn't the case for AIX, so it needs to define its own DSO
extension specifically.
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9005)
-----------------------------------------------------------------------
Summary of changes:
Configurations/platform/AIX.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/Configurations/platform/AIX.pm b/Configurations/platform/AIX.pm
index f441c15..c6f0e8d 100644
--- a/Configurations/platform/AIX.pm
+++ b/Configurations/platform/AIX.pm
@@ -12,6 +12,7 @@ require platform::Unix;
# Assume someone set @INC right before loading this module
use configdata;
+sub dsoext { '.so' }
sub shlibextsimple { '.a' }
# In shared mode, the default static library names clashes with the final
More information about the openssl-commits
mailing list