X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=Configurations%2Fshared-info.pl;h=3df12a321bb6901acf02d37c3b4ac113dce7162e;hp=eb919b1f4a91c6509b56c94ead9e82ba5d1b2d99;hb=fdf6c0b6b72756ba69be589b2aaecdd51e4ec12a;hpb=dbb85890a85af25db35dbd710ac07b3c704a27f0 diff --git a/Configurations/shared-info.pl b/Configurations/shared-info.pl index eb919b1f4a..3df12a321b 100644 --- a/Configurations/shared-info.pl +++ b/Configurations/shared-info.pl @@ -2,7 +2,7 @@ # -*- mode: perl; -*- # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. # -# Licensed under the OpenSSL license (the "License"). You may not use +# Licensed under the Apache License 2.0 (the "License"). You may not use # this file except in compliance with the License. You can obtain a copy # in the file LICENSE in the source distribution or at # https://www.openssl.org/source/license.html @@ -53,7 +53,7 @@ my %shared_info; 'mingw-shared' => sub { return { %{$shared_info{'cygwin-shared'}}, - # def_flag made to empty string so it still generates + # def_flag made to empty string so it still generates # something shared_defflag => '', }; @@ -79,20 +79,4 @@ my %shared_info; shared_sonameflag => '-h ', }; }, - 'irix-shared' => sub { - return $shared_info{'gnu-shared'} if detect_gnu_ld(); - return { - shared_ldflag => '-shared -Wl,-Bsymbolic', - shared_sonameflag => '-Wl,-soname=', - }; - }, - 'hpux-shared' => { - bin_lflags => '-Wl,+s,+cdp,../:,+cdp,./:', - shared_ldflag => '-Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+cdp,../:,+cdp,./:', - shared_sonameflag => '-Wl,+h,', - }, - 'aix-shared' => { - bin_lflags => '-Wl,-bsvr4', - shared_ldflag => '-Wl,-bexpall,-bnolibpath,-bM:SRE', - }, );