From 26de4ec68f9c332c8d24376b986cd54954d7c6d2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 25 May 2019 11:02:59 +0200 Subject: [PATCH] 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 (Merged from https://github.com/openssl/openssl/pull/9005) --- Configurations/platform/AIX.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Configurations/platform/AIX.pm b/Configurations/platform/AIX.pm index f441c157de..c6f0e8d251 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 -- 2.34.1