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@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9005)
This commit is contained in:
parent
65dc5c3cc1
commit
26de4ec68f
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue