Configure: let platform->dsoext() default with platform->shlibextsimple()
authorRichard Levitte <levitte@openssl.org>
Sat, 18 May 2019 23:24:21 +0000 (16:24 -0700)
committerRichard Levitte <levitte@openssl.org>
Mon, 20 May 2019 03:18:01 +0000 (05:18 +0200)
We still use '.so' as a last resort...

Fixes #8950

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8951)

Configurations/platform/Unix.pm

index ca8d6bb65b2ed53a3ae09a5966ae9a8edaa8498a..bb93d38f8c87d95cfaf012167c945eec963d3f70 100644 (file)
@@ -13,7 +13,8 @@ require platform::BASE;
 use configdata;
 
 sub binext              { $target{exe_extension} || '' }
-sub dsoext              { $target{dso_extension} || '.so' }
+sub dsoext              { $target{dso_extension} || platform->shlibextsimple()
+                              || '.so' }
 # Because these are also used in scripts and not just Makefile, we must
 # convert $(SHLIB_VERSION_NUMBER) to the actual number.
 sub shlibext            { (my $x = $target{shared_extension}