diff options
author | Richard Levitte <levitte@openssl.org> | 2018-10-23 15:00:36 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-01-21 19:31:32 +0100 |
commit | c162a8c344f12b2e0e788920358f51181ddf168f (patch) | |
tree | ee221812ca4b291d598d3bedccf64cdde03dea92 /util/unlocal_shlib.com.in | |
parent | Rework building: Windows changes to handle extensions and product names (diff) | |
download | openssl-c162a8c344f12b2e0e788920358f51181ddf168f.tar.xz openssl-c162a8c344f12b2e0e788920358f51181ddf168f.zip |
Rework building: VMS changes to handle extensions and product names
Add platform::VMS, which is a generic VMS module. Additional modules
to support specific building aspects (such as specific compilers) may
be added later, but since we currently work on file names and those
are generic enough, this is also enough.
This reworks Configurations/descrip.mms.tmpl to work out product names
in platform::VMS terms. Something to be noted is that the new
functionality ignores the *_extension config attributes, as they were
never used. VMS is very consistent in its use of extensions, so there
is no reason to believe much will change in this respect.
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 'util/unlocal_shlib.com.in')
-rw-r--r-- | util/unlocal_shlib.com.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/util/unlocal_shlib.com.in b/util/unlocal_shlib.com.in index dd4fd2a9dd..f9ae76b47b 100644 --- a/util/unlocal_shlib.com.in +++ b/util/unlocal_shlib.com.in @@ -1,17 +1,14 @@ ${- - use File::Spec::Functions qw(rel2abs); - - my $bldtop = rel2abs($config{builddir}); - our %names = ( map { $_ => $bldtop.$_.".EXE" } - map { $unified_info{sharednames}->{$_} || () } - @{$unified_info{libraries}} ); + our %names = ( map { platform->sharedname($_) => + $bldtop.platform->sharedlib($_) } + @{$unified_info{install}->{libraries}} ); "" -} $ ! Remove the local environment created by local_shlib.com $ $ OPENSSL_NAMES := OPENSSL_NAMES_'F$GETJPI("","PID")' $ IF F$TRNLNM("OSSL_FLAG",OPENSSL_NAMES) .EQS. "" THEN EXIT 0 $ -$ NAMES := {- join(",", keys %names); -} +$ NAMES := {- join(",", sort keys %names); -} $ I = 0 $ LOOP: $ E = F$ELEMENT(I,",",NAMES) |