summaryrefslogtreecommitdiffstats
path: root/Configurations/platform/AIX.pm
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-02-04 21:28:43 +0100
committerRichard Levitte <levitte@openssl.org>2019-02-11 16:50:47 +0100
commitfb82cbfe3da846d61e1d4c6d14bf7f4111cccbb2 (patch)
tree39703ec7a56e5e367d8bf8c7c428c95ed70e4b53 /Configurations/platform/AIX.pm
parentca811248d838058c13236a6c3b688e0ac98c02c8 (diff)
Rework build: add special cases for AIX
When reworking the way library file names and extensions were formed, AIX was lost in the process. This restores the previous functionality. Fixes #8156 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8162)
Diffstat (limited to 'Configurations/platform/AIX.pm')
-rw-r--r--Configurations/platform/AIX.pm27
1 files changed, 27 insertions, 0 deletions
diff --git a/Configurations/platform/AIX.pm b/Configurations/platform/AIX.pm
new file mode 100644
index 0000000000..f441c157de
--- /dev/null
+++ b/Configurations/platform/AIX.pm
@@ -0,0 +1,27 @@
+package platform::AIX;
+
+use strict;
+use warnings;
+use Carp;
+
+use vars qw(@ISA);
+
+require platform::Unix;
+@ISA = qw(platform::Unix);
+
+# Assume someone set @INC right before loading this module
+use configdata;
+
+sub shlibextsimple { '.a' }
+
+# In shared mode, the default static library names clashes with the final
+# "simple" full shared library name, so we add '_a' to the basename of the
+# static libraries in that case.
+sub staticname {
+ # Non-installed libraries are *always* static, and their names remain
+ # the same, except for the mandatory extension
+ my $in_libname = platform::BASE->staticname($_[1]);
+ return $in_libname if $unified_info{attributes}->{$_[1]}->{noinst};
+
+ return platform::BASE->staticname($_[1]) . '_a';
+}