[openssl] master update

Richard Levitte levitte at openssl.org
Tue Feb 19 15:36:13 UTC 2019


The branch master has been updated
       via  c1b3846242fc1a7791beca42f548c325c35e269b (commit)
      from  73e62d40eb53f2bad98dea0083c217dbfad1a335 (commit)


- Log -----------------------------------------------------------------
commit c1b3846242fc1a7791beca42f548c325c35e269b
Author: Matthias Kraft <Matthias.Kraft at softwareag.com>
Date:   Tue Feb 19 13:22:35 2019 +0100

    Fix reference to symbol 'main'.
    
    The AIX binder needs to be instructed that the output will have no entry
    point (see AIX' ld manual: -e in the Flags section; autoexp and noentry
    in the Binder section).
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/8282)

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

Summary of changes:
 Configurations/10-main.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index 1e49118..8b758a0 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -1098,7 +1098,7 @@ my %targets = (
         dso_scheme       => "dlfcn",
         shared_target    => "aix",
         module_ldflags   => "-Wl,-G,-bsymbolic,-bexpall",
-        shared_ldflag    => "-Wl,-G,-bsymbolic",
+        shared_ldflag    => "-Wl,-G,-bsymbolic,-bnoentry",
         shared_defflag   => "-Wl,-bE:",
         perl_platform    => 'AIX',
     },


More information about the openssl-commits mailing list