summaryrefslogtreecommitdiffstats
path: root/Configurations/common.tmpl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-10-23 15:45:24 +0200
committerRichard Levitte <levitte@openssl.org>2019-01-21 19:31:32 +0100
commitf5fb6f0543cafd3db6671cfb987bf475a35f30f6 (patch)
treebea3770d1ea07835f1b7138d71b6355c8bc3d0f2 /Configurations/common.tmpl
parent9afc2b92fe6725336f9c7d917deb5ca8c5e4011b (diff)
Rework building: Get rid of old %unified_info structures
Now that we have the names of libraries on different systems established through platform modules, we can remove the old structure to establish the same thing, i.e. $unified_info{sharednames} and $unified_info{rename}. That means removing support for the RENAME and SHARED_NAME keywords in build.info as well. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/7473)
Diffstat (limited to 'Configurations/common.tmpl')
-rw-r--r--Configurations/common.tmpl3
1 files changed, 1 insertions, 2 deletions
diff --git a/Configurations/common.tmpl b/Configurations/common.tmpl
index bf440d9d88..9e07a6f112 100644
--- a/Configurations/common.tmpl
+++ b/Configurations/common.tmpl
@@ -129,8 +129,7 @@
return "" if $cache{$lib};
unless ($disabled{shared} || $lib =~ /\.a$/) {
my $obj2shlib = defined &obj2shlib ? \&obj2shlib : \&libobj2shlib;
- $OUT .= $obj2shlib->(shlib => $unified_info{sharednames}->{$lib},
- lib => $lib,
+ $OUT .= $obj2shlib->(lib => $lib,
objs => $unified_info{shared_sources}->{$lib},
deps => [ reducedepends(resolvedepends($lib)) ],
installed => is_installed($lib));