[openssl] master update

Richard Levitte levitte at openssl.org
Mon May 20 03:18:54 UTC 2019


The branch master has been updated
       via  d3136af3c3905a730bd8fb44158aab36a2549d9b (commit)
      from  e9f148c9356b18995298f37bafbf1836a3fce078 (commit)


- Log -----------------------------------------------------------------
commit d3136af3c3905a730bd8fb44158aab36a2549d9b
Author: Richard Levitte <levitte at openssl.org>
Date:   Sat May 18 16:24:21 2019 -0700

    Configure: let platform->dsoext() default with platform->shlibextsimple()
    
    We still use '.so' as a last resort...
    
    Fixes #8950
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/8951)

-----------------------------------------------------------------------

Summary of changes:
 Configurations/platform/Unix.pm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Configurations/platform/Unix.pm b/Configurations/platform/Unix.pm
index ca8d6bb..bb93d38 100644
--- a/Configurations/platform/Unix.pm
+++ b/Configurations/platform/Unix.pm
@@ -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}


More information about the openssl-commits mailing list