2016-01-30 06:14:58 +00:00
|
|
|
## descrip.mms to build OpenSSL on OpenVMS
|
|
|
|
##
|
|
|
|
## {- join("\n## ", @autowarntext) -}
|
|
|
|
{-
|
|
|
|
use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
|
|
|
|
|
|
|
|
# Our prefix, claimed when speaking with the VSI folks Tuesday
|
|
|
|
# January 26th 2016
|
|
|
|
our $osslprefix = 'OSSL$';
|
|
|
|
(our $osslprefix_q = $osslprefix) =~ s/\$/\\\$/;
|
|
|
|
|
2017-07-19 08:13:41 +00:00
|
|
|
our $sover_dirname = sprintf "%02d%02d", split(/\./, $config{shlib_version_number});
|
2016-07-06 16:53:56 +00:00
|
|
|
our $osslver = sprintf "%02d%02d", split(/\./, $config{version});
|
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
our $sourcedir = $config{sourcedir};
|
|
|
|
our $builddir = $config{builddir};
|
|
|
|
sub sourcefile {
|
|
|
|
catfile($sourcedir, @_);
|
|
|
|
}
|
|
|
|
sub buildfile {
|
|
|
|
catfile($builddir, @_);
|
|
|
|
}
|
|
|
|
sub sourcedir {
|
|
|
|
catdir($sourcedir, @_);
|
|
|
|
}
|
|
|
|
sub builddir {
|
|
|
|
catdir($builddir, @_);
|
|
|
|
}
|
|
|
|
sub tree {
|
|
|
|
(my $x = shift) =~ s|\]$|...]|;
|
|
|
|
$x
|
|
|
|
}
|
|
|
|
sub move {
|
|
|
|
my $f = catdir(@_);
|
|
|
|
my $b = abs2rel(rel2abs("."),rel2abs($f));
|
|
|
|
$sourcedir = catdir($b,$sourcedir)
|
|
|
|
if !file_name_is_absolute($sourcedir);
|
|
|
|
$builddir = catdir($b,$builddir)
|
|
|
|
if !file_name_is_absolute($builddir);
|
|
|
|
"";
|
|
|
|
}
|
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
# Because we need to make two computations of these data,
|
|
|
|
# we store them in arrays for reuse
|
2017-04-18 14:24:23 +00:00
|
|
|
our @libs =
|
|
|
|
map { (my $x = $_) =~ s/\.a$//; $x }
|
|
|
|
@{$unified_info{libraries}};
|
|
|
|
our @shlibs =
|
|
|
|
map { $unified_info{sharednames}->{$_} || () }
|
|
|
|
grep(!/\.a$/, @{$unified_info{libraries}});
|
|
|
|
our @install_libs =
|
|
|
|
map { (my $x = $_) =~ s/\.a$//; $x }
|
|
|
|
@{$unified_info{install}->{libraries}};
|
|
|
|
our @install_shlibs =
|
|
|
|
map { $unified_info{sharednames}->{$_} || () }
|
|
|
|
grep(!/\.a$/, @{$unified_info{install}->{libraries}});
|
2016-06-16 22:23:43 +00:00
|
|
|
our @generated = ( ( map { (my $x = $_) =~ s|\.S$|\.s|; $x }
|
|
|
|
grep { defined $unified_info{generate}->{$_} }
|
|
|
|
map { @{$unified_info{sources}->{$_}} }
|
|
|
|
grep { /\.o$/ } keys %{$unified_info{sources}} ),
|
|
|
|
( grep { /\.h$/ } keys %{$unified_info{generate}} ) );
|
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
# This is a horrible hack, but is needed because recursive inclusion of files
|
|
|
|
# in different directories does not work well with HP C.
|
|
|
|
my $sd = sourcedir("crypto", "async", "arch");
|
|
|
|
foreach (grep /\[\.crypto\.async\.arch\].*\.o$/, keys %{$unified_info{sources}}) {
|
|
|
|
(my $x = $_) =~ s|\.o$|.OBJ|;
|
|
|
|
$unified_info{before}->{$x}
|
2016-06-16 22:23:43 +00:00
|
|
|
= qq(arch_include = F\$PARSE("$sd","A.;",,,"SYNTAX_ONLY") - "A.;"
|
|
|
|
define arch 'arch_include');
|
2016-01-30 06:14:58 +00:00
|
|
|
$unified_info{after}->{$x}
|
|
|
|
= qq(deassign arch);
|
|
|
|
}
|
|
|
|
my $sd1 = sourcedir("ssl","record");
|
|
|
|
my $sd2 = sourcedir("ssl","statem");
|
2016-11-09 23:41:53 +00:00
|
|
|
my @ssl_locl_users = grep(/^\[\.(?:ssl\.(?:record|statem)|test)\].*\.o$/,
|
|
|
|
keys %{$unified_info{sources}});
|
2016-11-04 13:08:55 +00:00
|
|
|
foreach (@ssl_locl_users) {
|
2016-01-30 06:14:58 +00:00
|
|
|
(my $x = $_) =~ s|\.o$|.OBJ|;
|
|
|
|
$unified_info{before}->{$x}
|
2016-06-16 22:23:43 +00:00
|
|
|
= qq(record_include = F\$PARSE("$sd1","A.;",,,"SYNTAX_ONLY") - "A.;"
|
|
|
|
define record 'record_include'
|
|
|
|
statem_include = F\$PARSE("$sd2","A.;",,,"SYNTAX_ONLY") - "A.;"
|
|
|
|
define statem 'statem_include');
|
2016-01-30 06:14:58 +00:00
|
|
|
$unified_info{after}->{$x}
|
|
|
|
= qq(deassign statem
|
|
|
|
deassign record);
|
|
|
|
}
|
2017-04-23 14:17:32 +00:00
|
|
|
# This makes sure things get built in the order they need
|
|
|
|
# to. You're welcome.
|
|
|
|
sub dependmagic {
|
|
|
|
my $target = shift;
|
|
|
|
|
2017-07-07 09:09:19 +00:00
|
|
|
return "$target : build_generated\n\t\pipe \$(MMS) \$(MMSQUALIFIERS) depend && \$(MMS) \$(MMSQUALIFIERS) _$target\n_$target";
|
2017-04-23 14:17:32 +00:00
|
|
|
}
|
2016-01-30 06:14:58 +00:00
|
|
|
#use Data::Dumper;
|
|
|
|
#print STDERR "DEBUG: before:\n", Dumper($unified_info{before});
|
|
|
|
#print STDERR "DEBUG: after:\n", Dumper($unified_info{after});
|
|
|
|
"";
|
|
|
|
-}
|
|
|
|
PLATFORM={- $config{target} -}
|
|
|
|
OPTIONS={- $config{options} -}
|
|
|
|
CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
|
|
|
|
SRCDIR={- $config{sourcedir} -}
|
2016-06-14 20:03:08 +00:00
|
|
|
BLDDIR={- $config{builddir} -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-05-08 14:57:55 +00:00
|
|
|
# Allow both V and VERBOSE to indicate verbosity. This only applies
|
|
|
|
# to testing.
|
|
|
|
VERBOSE=$(V)
|
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
VERSION={- $config{version} -}
|
|
|
|
MAJOR={- $config{major} -}
|
|
|
|
MINOR={- $config{minor} -}
|
|
|
|
SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
|
|
|
|
SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
|
|
|
|
SHLIB_MAJOR={- $config{shlib_major} -}
|
|
|
|
SHLIB_MINOR={- $config{shlib_minor} -}
|
|
|
|
SHLIB_TARGET={- $target{shared_target} -}
|
|
|
|
|
|
|
|
EXE_EXT=.EXE
|
|
|
|
LIB_EXT=.OLB
|
|
|
|
SHLIB_EXT=.EXE
|
|
|
|
OBJ_EXT=.OBJ
|
2016-06-16 22:23:43 +00:00
|
|
|
DEP_EXT=.D
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2017-04-18 14:24:23 +00:00
|
|
|
LIBS={- join(", ", map { "-\n\t".$_.".OLB" } @libs) -}
|
2016-06-16 22:23:43 +00:00
|
|
|
SHLIBS={- join(", ", map { "-\n\t".$_.".EXE" } @shlibs) -}
|
2016-01-30 06:14:58 +00:00
|
|
|
ENGINES={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{engines}}) -}
|
2016-07-08 15:58:36 +00:00
|
|
|
PROGRAMS={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{programs}}) -}
|
2016-01-30 06:14:58 +00:00
|
|
|
SCRIPTS={- join(", ", map { "-\n\t".$_ } @{$unified_info{scripts}}) -}
|
2016-03-09 00:16:10 +00:00
|
|
|
{- output_off() if $disabled{makedepend}; "" -}
|
2016-02-18 18:41:57 +00:00
|
|
|
DEPS={- our @deps = map { (my $x = $_) =~ s|\.o$|\$(DEP_EXT)|; $x; }
|
|
|
|
grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
|
|
|
|
keys %{$unified_info{sources}};
|
|
|
|
join(", ", map { "-\n\t".$_ } @deps); -}
|
2016-03-09 00:16:10 +00:00
|
|
|
{- output_on() if $disabled{makedepend}; "" -}
|
2016-06-16 22:23:43 +00:00
|
|
|
GENERATED_MANDATORY={- join(", ", map { "-\n\t".$_ } @{$unified_info{depends}->{""}} ) -}
|
|
|
|
GENERATED={- join(", ", map { "-\n\t".$_ } @generated) -}
|
2016-06-13 20:02:11 +00:00
|
|
|
|
2017-04-18 14:24:23 +00:00
|
|
|
INSTALL_LIBS={- join(", ", map { "-\n\t".$_.".OLB" } @install_libs) -}
|
2016-07-08 12:52:09 +00:00
|
|
|
INSTALL_SHLIBS={- join(", ", map { "-\n\t".$_.".EXE" } @install_shlibs) -}
|
|
|
|
INSTALL_ENGINES={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{install}->{engines}}) -}
|
|
|
|
INSTALL_PROGRAMS={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{install}->{programs}}) -}
|
2016-05-23 14:46:45 +00:00
|
|
|
{- output_off() if $disabled{apps}; "" -}
|
|
|
|
BIN_SCRIPTS=[.tools]c_rehash.pl
|
|
|
|
MISC_SCRIPTS=[.apps]CA.pl, [.apps]tsget.pl
|
|
|
|
{- output_on() if $disabled{apps}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2017-06-15 17:31:01 +00:00
|
|
|
APPS_OPENSSL={- use File::Spec::Functions;
|
|
|
|
catfile("apps","openssl") -}
|
|
|
|
|
2016-02-12 20:14:03 +00:00
|
|
|
# DESTDIR is for package builders so that they can configure for, say,
|
2016-01-30 06:14:58 +00:00
|
|
|
# SYS$COMMON:[OPENSSL] and yet have everything installed in STAGING:[USER].
|
|
|
|
# In that case, configure with --prefix=SYS$COMMON:[OPENSSL] and then run
|
2016-02-12 20:14:03 +00:00
|
|
|
# MMS with /MACROS=(DESTDIR=STAGING:[USER]). The result will end up in
|
|
|
|
# STAGING:[USER.OPENSSL].
|
2016-01-30 06:14:58 +00:00
|
|
|
# Normally it is left empty.
|
2016-02-12 20:14:03 +00:00
|
|
|
DESTDIR=
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
# Do not edit this manually. Use Configure --prefix=DIR to change this!
|
2016-07-06 16:53:56 +00:00
|
|
|
INSTALLTOP={- our $installtop =
|
|
|
|
catdir($config{prefix}) || "SYS\$COMMON:[OPENSSL]";
|
2016-03-29 18:01:33 +00:00
|
|
|
$installtop -}
|
|
|
|
SYSTARTUP={- catdir($installtop, '[.SYS$STARTUP]'); -}
|
2016-01-30 06:14:58 +00:00
|
|
|
# This is the standard central area to store certificates, private keys...
|
2016-08-26 20:34:39 +00:00
|
|
|
OPENSSLDIR={- catdir($config{openssldir}) or
|
2016-03-23 22:04:32 +00:00
|
|
|
$config{prefix} ? catdir($config{prefix},"COMMON")
|
|
|
|
: "SYS\$COMMON:[OPENSSL-COMMON]" -}
|
2016-07-08 16:30:43 +00:00
|
|
|
# The same, but for C
|
|
|
|
OPENSSLDIR_C={- $osslprefix -}DATAROOT:[000000]
|
|
|
|
# Where installed engines reside, for C
|
2017-07-19 08:13:41 +00:00
|
|
|
ENGINESDIR_C={- $osslprefix -}ENGINES{- $sover_dirname.$target{pointer_size} -}:
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2018-01-26 18:56:44 +00:00
|
|
|
CC= {- $config{cc} -}
|
2018-02-13 19:04:35 +00:00
|
|
|
CPP= {- $config{cpp} -}
|
2018-01-23 12:54:55 +00:00
|
|
|
DEFINES={- our $defines = join(",",
|
|
|
|
'__dummy', # To make comma processing easier
|
2018-01-26 18:56:44 +00:00
|
|
|
@{$config{defines}}) -}
|
2018-02-09 08:55:36 +00:00
|
|
|
INCLUDES={- our $includes = join(',', @{$config{includes}}) -}
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
CPPFLAGS='qual_includes'{- our $cppflags = join('', @{$config{cppflags}}) -}
|
|
|
|
CPPFLAGS_Q={- (my $x = $cppflags) =~ s|"|""|g;
|
|
|
|
(my $d = $defines) =~ s|"|""|g;
|
2018-02-09 08:55:36 +00:00
|
|
|
$x .= "/INCLUDE=($includes)" if $includes;
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
$x .= "/DEFINE=($d)";
|
2018-02-09 08:55:36 +00:00
|
|
|
$x; -}
|
2018-01-26 18:56:44 +00:00
|
|
|
CFLAGS={- join('', @{$config{cflags}}) -}
|
|
|
|
LDFLAGS= {- join('', @{$config{lflags}}) -}
|
|
|
|
EX_LIBS= {- join('', map { ','.$_ } @{$config{ex_libs}}) -}
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
|
|
|
|
LIB_DEFINES=$(DEFINES){- join("", (map { ",$_" }
|
|
|
|
@{$target{shared_defines}},
|
|
|
|
'OPENSSLDIR="""$(OPENSSLDIR_C)"""',
|
|
|
|
'ENGINESDIR="""$(ENGINESDIR_C)"""')) -}
|
|
|
|
LIB_CPPFLAGS=$(CPPFLAGS)/DEFINE=($(LIB_DEFINES))
|
|
|
|
LIB_CFLAGS=$(CFLAGS){- $target{lib_cflags} // "" -}
|
|
|
|
DSO_DEFINES=$(DEFINES){- join("", (map { ",$_" } @{$target{dso_defines}})) -}
|
|
|
|
DSO_CPPFLAGS=$(CPPFLAGS)/DEFINE=($(DSO_DEFINES))
|
|
|
|
DSO_CFLAGS=$(CFLAGS){- $target{dso_cflags} // "" -}
|
|
|
|
BIN_DEFINES=$(DEFINES){- join("", (map { ",$_" } @{$target{bin_defines}})) -}
|
|
|
|
BIN_CPPFLAGS=$(CPPFLAGS)/DEFINE=($(BIN_DEFINES))
|
|
|
|
BIN_CFLAGS=$(CFLAGS){- $target{bin_cflags} // "" -}
|
|
|
|
NO_INST_LIB_CFLAGS=$(CFLAGS){- $target{no_inst_lib_cflags}
|
|
|
|
// $target{lib_cflags}
|
|
|
|
// "" -}
|
|
|
|
NO_INST_DSO_CFLAGS=$(CFLAGS){- $target{no_inst_dso_cflags}
|
|
|
|
// $target{dso_cflags}
|
|
|
|
// "" -}
|
|
|
|
NO_INST_BIN_CFLAGS=$(CFLAGS){- $target{no_inst_bin_cflags}
|
|
|
|
// $target{bin_cflags}
|
|
|
|
// "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
PERL={- $config{perl} -}
|
|
|
|
|
|
|
|
# We let the C compiler driver to take care of .s files. This is done in
|
|
|
|
# order to be excused from maintaining a separate set of architecture
|
|
|
|
# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
|
|
|
|
# gcc, then the driver will automatically translate it to -xarch=v8plus
|
|
|
|
# and pass it down to assembler.
|
2018-01-26 18:56:44 +00:00
|
|
|
AS={- $config{as} -}
|
|
|
|
ASFLAGS={- join('', @{$config{asflags}}) -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
# .FIRST and .LAST are special targets with MMS and MMK.
|
|
|
|
# The defines in there are for C. includes that look like
|
|
|
|
# this:
|
|
|
|
#
|
|
|
|
# #include <openssl/foo.h>
|
|
|
|
# #include "internal/bar.h"
|
|
|
|
#
|
|
|
|
# will use the logical names to find the files. Expecting
|
|
|
|
# DECompHP C to find files in subdirectories of whatever was
|
|
|
|
# given with /INCLUDE is a fantasy, unfortunately.
|
|
|
|
NODEBUG=@
|
|
|
|
.FIRST :
|
|
|
|
$(NODEBUG) openssl_inc1 = F$PARSE("[.include.openssl]","A.;",,,"syntax_only") - "A.;"
|
2016-02-19 01:32:22 +00:00
|
|
|
$(NODEBUG) openssl_inc2 = F$PARSE("{- catdir($config{sourcedir},"[.include.openssl]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
|
2016-01-30 06:14:58 +00:00
|
|
|
$(NODEBUG) internal_inc1 = F$PARSE("[.crypto.include.internal]","A.;",,,"SYNTAX_ONLY") - "A.;"
|
|
|
|
$(NODEBUG) internal_inc2 = F$PARSE("{- catdir($config{sourcedir},"[.include.internal]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
|
|
|
|
$(NODEBUG) internal_inc3 = F$PARSE("{- catdir($config{sourcedir},"[.crypto.include.internal]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
|
|
|
|
$(NODEBUG) DEFINE openssl 'openssl_inc1','openssl_inc2'
|
|
|
|
$(NODEBUG) DEFINE internal 'internal_inc1','internal_inc2','internal_inc3'
|
2016-02-12 20:14:03 +00:00
|
|
|
$(NODEBUG) staging_dir = "$(DESTDIR)"
|
2016-03-23 22:08:18 +00:00
|
|
|
$(NODEBUG) staging_instdir = ""
|
|
|
|
$(NODEBUG) staging_datadir = ""
|
2016-01-30 06:14:58 +00:00
|
|
|
$(NODEBUG) IF staging_dir .NES. "" THEN -
|
2016-03-23 22:08:18 +00:00
|
|
|
staging_instdir = F$PARSE("A.;",staging_dir,"[]",,"SYNTAX_ONLY")
|
|
|
|
$(NODEBUG) IF staging_instdir - "]A.;" .NES. staging_instdir THEN -
|
|
|
|
staging_instdir = staging_instdir - "]A.;" + ".OPENSSL-INSTALL]"
|
|
|
|
$(NODEBUG) IF staging_instdir - "A.;" .NES. staging_instdir THEN -
|
|
|
|
staging_instdir = staging_instdir - "A.;" + "[OPENSSL-INSTALL]"
|
|
|
|
$(NODEBUG) IF staging_dir .NES. "" THEN -
|
|
|
|
staging_datadir = F$PARSE("A.;",staging_dir,"[]",,"SYNTAX_ONLY")
|
|
|
|
$(NODEBUG) IF staging_datadir - "]A.;" .NES. staging_datadir THEN -
|
|
|
|
staging_datadir = staging_datadir - "]A.;" + ".OPENSSL-COMMON]"
|
|
|
|
$(NODEBUG) IF staging_datadir - "A.;" .NES. staging_datadir THEN -
|
|
|
|
staging_datadir = staging_datadir - "A.;" + "[OPENSSL-COMMON]"
|
2016-01-30 06:14:58 +00:00
|
|
|
$(NODEBUG) !
|
|
|
|
$(NODEBUG) ! Installation logical names
|
|
|
|
$(NODEBUG) !
|
2016-03-23 22:08:18 +00:00
|
|
|
$(NODEBUG) installtop = F$PARSE(staging_instdir,"$(INSTALLTOP)","[]A.;",,"SYNTAX_ONLY,NO_CONCEAL") - ".][000000" - "[000000." - "][" - "]A.;" + ".]"
|
|
|
|
$(NODEBUG) datatop = F$PARSE(staging_datadir,"$(OPENSSLDIR)","[]A.;",,"SYNTAX_ONLY,NO_CONCEAL") - ".][000000" - "[000000." - "][" - "]A.;" + ".]"
|
|
|
|
$(NODEBUG) DEFINE ossl_installroot 'installtop'
|
|
|
|
$(NODEBUG) DEFINE ossl_dataroot 'datatop'
|
2016-01-30 06:14:58 +00:00
|
|
|
$(NODEBUG) !
|
|
|
|
$(NODEBUG) ! Figure out the architecture
|
|
|
|
$(NODEBUG) !
|
2016-11-04 18:11:11 +00:00
|
|
|
$(NODEBUG) arch = f$edit( f$getsyi( "arch_name"), "upcase")
|
2016-01-30 06:14:58 +00:00
|
|
|
$(NODEBUG) !
|
|
|
|
$(NODEBUG) ! Set up logical names for the libraries, so LINK and
|
|
|
|
$(NODEBUG) ! running programs can use them.
|
|
|
|
$(NODEBUG) !
|
2017-04-18 14:24:23 +00:00
|
|
|
$(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEFINE ".uc($_)." 'F\$ENV(\"DEFAULT\")'".uc($_)."\$(SHLIB_EXT)" } @shlibs) || "!" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
.LAST :
|
2017-04-18 14:24:23 +00:00
|
|
|
$(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEASSIGN ".uc($_) } @shlibs) || "!" -}
|
2016-03-23 22:08:18 +00:00
|
|
|
$(NODEBUG) DEASSIGN ossl_dataroot
|
2016-01-30 06:14:58 +00:00
|
|
|
$(NODEBUG) DEASSIGN ossl_installroot
|
|
|
|
$(NODEBUG) DEASSIGN internal
|
|
|
|
$(NODEBUG) DEASSIGN openssl
|
|
|
|
.DEFAULT :
|
|
|
|
@ ! MMS cannot handle no actions...
|
|
|
|
|
|
|
|
# The main targets ###################################################
|
|
|
|
|
2017-04-23 14:17:32 +00:00
|
|
|
{- dependmagic('all'); -} : build_libs_nodep, build_engines_nodep, build_programs_nodep
|
|
|
|
{- dependmagic('build_libs'); -} : build_libs_nodep
|
|
|
|
{- dependmagic('build_engines'); -} : build_engines_nodep
|
|
|
|
{- dependmagic('build_programs'); -} : build_programs_nodep
|
2016-02-18 18:41:57 +00:00
|
|
|
|
2017-04-23 14:17:32 +00:00
|
|
|
build_generated : $(GENERATED_MANDATORY)
|
2016-07-06 01:07:16 +00:00
|
|
|
build_libs_nodep : $(LIBS), $(SHLIBS)
|
2016-02-18 18:41:57 +00:00
|
|
|
build_engines_nodep : $(ENGINES)
|
2016-07-08 15:58:36 +00:00
|
|
|
build_programs_nodep : $(PROGRAMS), $(SCRIPTS)
|
2016-02-18 18:41:57 +00:00
|
|
|
|
2016-07-08 15:58:36 +00:00
|
|
|
# Kept around for backward compatibility
|
|
|
|
build_apps build_tests : build_programs
|
|
|
|
|
2017-06-16 01:46:41 +00:00
|
|
|
# Convenience target to prebuild all generated files, not just the mandatory
|
|
|
|
# ones
|
|
|
|
build_all_generated : $(GENERATED_MANDATORY) $(GENERATED)
|
|
|
|
|
2017-04-23 14:17:32 +00:00
|
|
|
test : tests
|
|
|
|
{- dependmagic('tests'); -} : build_programs_nodep, build_engines_nodep
|
2016-04-14 12:44:15 +00:00
|
|
|
@ ! {- output_off() if $disabled{tests}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
SET DEFAULT [.test]{- move("test") -}
|
2017-10-09 15:57:13 +00:00
|
|
|
CREATE/DIR [.test-runs]
|
2016-01-30 06:14:58 +00:00
|
|
|
DEFINE SRCTOP {- sourcedir() -}
|
|
|
|
DEFINE BLDTOP {- builddir() -}
|
2017-10-09 15:57:13 +00:00
|
|
|
DEFINE RESULT_D {- builddir(qw(test test-runs)) -}
|
2016-03-05 12:11:37 +00:00
|
|
|
DEFINE OPENSSL_ENGINES {- builddir("engines") -}
|
2016-11-03 16:08:10 +00:00
|
|
|
DEFINE OPENSSL_DEBUG_MEMORY "on"
|
2016-05-08 14:57:55 +00:00
|
|
|
IF "$(VERBOSE)" .NES. "" THEN DEFINE VERBOSE "$(VERBOSE)"
|
2016-01-30 06:14:58 +00:00
|
|
|
$(PERL) {- sourcefile("test", "run_tests.pl") -} $(TESTS)
|
2016-11-03 16:08:10 +00:00
|
|
|
DEASSIGN OPENSSL_DEBUG_MEMORY
|
2016-03-05 12:11:37 +00:00
|
|
|
DEASSIGN OPENSSL_ENGINES
|
2016-01-30 06:14:58 +00:00
|
|
|
DEASSIGN BLDTOP
|
|
|
|
DEASSIGN SRCTOP
|
|
|
|
SET DEFAULT [-]{- move("..") -}
|
2016-04-14 12:44:15 +00:00
|
|
|
@ ! {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
|
|
|
|
@ WRITE SYS$OUTPUT "Tests are not supported with your chosen Configure options"
|
|
|
|
@ ! {- output_on() if !$disabled{tests}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
list-tests :
|
2016-06-16 22:23:43 +00:00
|
|
|
@ ! {- output_off() if $disabled{tests}; "" -}
|
|
|
|
@ DEFINE SRCTOP {- sourcedir() -}
|
|
|
|
@ $(PERL) {- sourcefile("test", "run_tests.pl") -} list
|
|
|
|
@ DEASSIGN SRCTOP
|
|
|
|
@ ! {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
|
|
|
|
@ WRITE SYS$OUTPUT "Tests are not supported with your chosen Configure options"
|
|
|
|
@ ! {- output_on() if !$disabled{tests}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
install : install_sw install_ssldirs install_docs
|
2016-02-19 08:53:05 +00:00
|
|
|
@ WRITE SYS$OUTPUT ""
|
|
|
|
@ WRITE SYS$OUTPUT "######################################################################"
|
|
|
|
@ WRITE SYS$OUTPUT ""
|
2016-02-28 08:31:46 +00:00
|
|
|
@ IF "$(DESTDIR)" .EQS. "" THEN -
|
2016-03-23 22:08:18 +00:00
|
|
|
PIPE ( WRITE SYS$OUTPUT "Installation complete" ; -
|
|
|
|
WRITE SYS$OUTPUT "" ; -
|
2016-07-06 19:54:47 +00:00
|
|
|
WRITE SYS$OUTPUT "Run @$(SYSTARTUP)openssl_startup{- $osslver -} to set up logical names" ; -
|
|
|
|
WRITE SYS$OUTPUT "then run @$(SYSTARTUP)openssl_utils{- $osslver -} to define commands" ; -
|
2016-03-23 22:08:18 +00:00
|
|
|
WRITE SYS$OUTPUT "" )
|
|
|
|
@ IF "$(DESTDIR)" .NES. "" THEN -
|
|
|
|
PIPE ( WRITE SYS$OUTPUT "Staging installation complete" ; -
|
|
|
|
WRITE SYS$OUTPUT "" ; -
|
|
|
|
WRITE SYS$OUTPUT "Finish or package in such a way that the contents of the directory tree" ; -
|
|
|
|
WRITE SYS$OUTPUT staging_instdir ; -
|
|
|
|
WRITE SYS$OUTPUT "ends up in $(INSTALLTOP)," ; -
|
|
|
|
WRITE SYS$OUTPUT "and that the contents of the contents of the directory tree" ; -
|
|
|
|
WRITE SYS$OUTPUT staging_datadir ; -
|
|
|
|
WRITE SYS$OUTPUT "ends up in $(OPENSSLDIR)" ; -
|
|
|
|
WRITE SYS$OUTPUT "" ; -
|
|
|
|
WRITE SYS$OUTPUT "When in its final destination," ; -
|
2016-07-06 16:53:56 +00:00
|
|
|
WRITE SYS$OUTPUT "Run @$(SYSTARTUP)openssl_startup{- $osslver -} to set up logical names" ; -
|
|
|
|
WRITE SYS$OUTPUT "then run @$(SYSTARTUP)openssl_utils{- $osslver -} to define commands" ; -
|
2016-02-28 08:31:46 +00:00
|
|
|
WRITE SYS$OUTPUT "" )
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-07-02 08:28:39 +00:00
|
|
|
check_install :
|
2016-07-06 16:53:56 +00:00
|
|
|
spawn/nolog @ossl_installroot:[SYSTEST]openssl_ivp{- $osslver -}.com
|
2016-07-02 08:28:39 +00:00
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
uninstall : uninstall_docs uninstall_sw
|
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
# Because VMS wants the generation number (or *) to delete files, we can't
|
2016-07-08 15:58:36 +00:00
|
|
|
# use $(LIBS), $(PROGRAMS), $(GENERATED) and $(ENGINES)directly.
|
2016-06-16 22:23:43 +00:00
|
|
|
libclean :
|
2017-04-18 14:24:23 +00:00
|
|
|
{- join("\n\t", map { "- DELETE $_.OLB;*" } @libs) || "@ !" -}
|
2017-12-04 13:27:58 +00:00
|
|
|
{- join("\n\t", map { "- DELETE $_.EXE;*,$_.MAP;*" } @shlibs) || "@ !" -}
|
2016-06-16 22:23:43 +00:00
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
clean : libclean
|
2017-03-15 01:52:20 +00:00
|
|
|
{- join("\n\t", map { "- DELETE $_.EXE;*,$_.OPT;*" } @{$unified_info{programs}}) || "@ !" -}
|
|
|
|
{- join("\n\t", map { "- DELETE $_.EXE;*,$_.OPT;*" } @{$unified_info{engines}}) || "@ !" -}
|
2016-06-16 22:23:43 +00:00
|
|
|
{- join("\n\t", map { "- DELETE $_;*" } @{$unified_info{scripts}}) || "@ !" -}
|
|
|
|
{- join("\n\t", map { "- DELETE $_;*" } @generated) || "@ !" -}
|
|
|
|
- DELETE [...]*.MAP;*
|
|
|
|
- DELETE [...]*.D;*
|
|
|
|
- DELETE [...]*.OBJ;*,*.LIS;*
|
|
|
|
- DELETE []CXX$DEMANGLER_DB.;*
|
|
|
|
- DELETE [.VMS]openssl_startup.com;*
|
|
|
|
- DELETE [.VMS]openssl_shutdown.com;*
|
|
|
|
- DELETE []vmsconfig.pm;*
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-06-13 20:02:11 +00:00
|
|
|
distclean : clean
|
|
|
|
- DELETE configdata.pm;*
|
|
|
|
- DELETE descrip.mms;*
|
|
|
|
|
2016-02-18 18:41:57 +00:00
|
|
|
depend : descrip.mms
|
|
|
|
descrip.mms : FORCE
|
2016-03-09 00:16:10 +00:00
|
|
|
@ ! {- output_off() if $disabled{makedepend}; "" -}
|
2016-02-18 18:41:57 +00:00
|
|
|
@ $(PERL) -pe "if (/^# DO NOT DELETE.*/) { exit(0); }" -
|
|
|
|
< descrip.mms > descrip.mms-new
|
|
|
|
@ OPEN/APPEND DESCRIP descrip.mms-new
|
|
|
|
@ WRITE DESCRIP "# DO NOT DELETE THIS LINE -- make depend depends on it."
|
2016-02-19 01:35:33 +00:00
|
|
|
{- join("\n\t", map { "\@ IF F\$SEARCH(\"$_\") .NES. \"\" THEN TYPE $_ /OUTPUT=DESCRIP:" } @deps); -}
|
2016-02-18 18:41:57 +00:00
|
|
|
@ CLOSE DESCRIP
|
2016-02-19 01:35:33 +00:00
|
|
|
@ PIPE ( $(PERL) -e "use File::Compare qw/compare_text/; my $x = compare_text(""descrip.mms"",""descrip.mms-new""); exit(0x10000000 + ($x == 0));" || -
|
|
|
|
RENAME descrip.mms-new descrip.mms )
|
2016-02-18 18:41:57 +00:00
|
|
|
@ IF F$SEARCH("descrip.mms-new") .NES. "" THEN DELETE descrip.mms-new;*
|
|
|
|
-@ SPAWN/OUTPUT=NLA0: PURGE/NOLOG descrip.mms
|
2016-03-09 00:16:10 +00:00
|
|
|
@ ! {- output_on() if $disabled{makedepend}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
# Install helper targets #############################################
|
|
|
|
|
2016-07-21 10:33:23 +00:00
|
|
|
install_sw : all install_shared _install_dev_ns -
|
|
|
|
install_engines _install_runtime_ns -
|
|
|
|
install_startup install_ivp
|
2016-06-16 22:23:43 +00:00
|
|
|
|
2016-07-21 10:33:23 +00:00
|
|
|
uninstall_sw : uninstall_shared _uninstall_dev_ns -
|
|
|
|
uninstall_engines _uninstall_runtime_ns -
|
|
|
|
uninstall_startup uninstall_ivp
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
install_docs : install_html_docs
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
uninstall_docs : uninstall_html_docs
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
install_ssldirs : check_INSTALLTOP
|
|
|
|
- CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[000000]
|
|
|
|
IF F$SEARCH("OSSL_DATAROOT:[000000]CERTS.DIR;1") .EQS. "" THEN -
|
|
|
|
CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[CERTS]
|
|
|
|
IF F$SEARCH("OSSL_DATAROOT:[000000]PRIVATE.DIR;1") .EQS. "" THEN -
|
|
|
|
CREATE/DIR/PROT=(S:RWED,O:RWE,G,W) OSSL_DATAROOT:[PRIVATE]
|
|
|
|
IF F$SEARCH("OSSL_DATAROOT:[000000]MISC.DIR;1") .EQS. "" THEN -
|
|
|
|
CREATE/DIR/PROT=(S:RWED,O:RWE,G,W) OSSL_DATAROOT:[MISC]
|
|
|
|
COPY/PROT=W:RE $(MISC_SCRIPTS) OSSL_DATAROOT:[MISC]
|
|
|
|
@ ! Install configuration file
|
2016-08-01 21:18:25 +00:00
|
|
|
COPY/PROT=W:R {- sourcefile("apps", "openssl-vms.cnf") -} -
|
|
|
|
ossl_dataroot:[000000]openssl.cnf-dist
|
|
|
|
IF F$SEARCH("OSSL_DATAROOT:[000000]openssl.cnf") .EQS. "" THEN -
|
|
|
|
COPY/PROT=W:R {- sourcefile("apps", "openssl-vms.cnf") -} -
|
|
|
|
ossl_dataroot:[000000]openssl.cnf
|
2016-09-09 22:05:41 +00:00
|
|
|
@ ! Install CTLOG configuration file
|
|
|
|
COPY/PROT=W:R {- sourcefile("apps", "ct_log_list.cnf") -} -
|
|
|
|
ossl_dataroot:[000000]ct_log_list.cnf-dist
|
|
|
|
IF F$SEARCH("OSSL_DATAROOT:[000000]ct_log_list.cnf") .EQS. "" THEN -
|
|
|
|
COPY/PROT=W:R {- sourcefile("apps", "ct_log_list.cnf") -} -
|
|
|
|
ossl_dataroot:[000000]ct_log_list.cnf
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-07-21 10:33:23 +00:00
|
|
|
install_shared : check_INSTALLTOP
|
|
|
|
@ {- output_off() if $disabled{shared}; "" -} !
|
|
|
|
@ WRITE SYS$OUTPUT "*** Installing shareable images"
|
|
|
|
@ ! Install shared (runtime) libraries
|
|
|
|
- CREATE/DIR ossl_installroot:[LIB.'arch']
|
|
|
|
{- join("\n ",
|
|
|
|
map { "COPY/PROT=W:R $_.EXE ossl_installroot:[LIB.'arch']" }
|
|
|
|
@install_shlibs) -}
|
|
|
|
@ {- output_on() if $disabled{shared}; "" -} !
|
|
|
|
|
|
|
|
_install_dev_ns : check_INSTALLTOP
|
2016-01-30 06:14:58 +00:00
|
|
|
@ WRITE SYS$OUTPUT "*** Installing development files"
|
|
|
|
@ ! Install header files
|
2016-03-23 23:28:38 +00:00
|
|
|
- CREATE/DIR ossl_installroot:[include.openssl]
|
2016-01-30 06:14:58 +00:00
|
|
|
COPY/PROT=W:R openssl:*.h ossl_installroot:[include.openssl]
|
2016-07-19 11:24:57 +00:00
|
|
|
@ ! Install static (development) libraries
|
2016-03-23 23:28:38 +00:00
|
|
|
- CREATE/DIR ossl_installroot:[LIB.'arch']
|
2016-01-30 06:14:58 +00:00
|
|
|
{- join("\n ",
|
2016-02-19 08:53:05 +00:00
|
|
|
map { "COPY/PROT=W:R $_.OLB ossl_installroot:[LIB.'arch']" }
|
2017-04-18 14:24:23 +00:00
|
|
|
@install_libs) -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-07-21 10:33:23 +00:00
|
|
|
install_dev : install_shared _install_dev_ns
|
|
|
|
|
|
|
|
_install_runtime_ns : check_INSTALLTOP
|
2016-01-30 06:14:58 +00:00
|
|
|
@ ! Install the main program
|
2016-03-23 23:28:38 +00:00
|
|
|
- CREATE/DIR ossl_installroot:[EXE.'arch']
|
2016-07-02 07:51:06 +00:00
|
|
|
COPY/PROT=W:RE [.APPS]openssl.EXE -
|
2016-07-06 16:53:56 +00:00
|
|
|
ossl_installroot:[EXE.'arch']openssl{- $osslver -}.EXE
|
2016-01-30 06:14:58 +00:00
|
|
|
@ ! Install scripts
|
2016-05-23 14:46:45 +00:00
|
|
|
COPY/PROT=W:RE $(BIN_SCRIPTS) ossl_installroot:[EXE]
|
2016-04-14 15:07:37 +00:00
|
|
|
@ ! {- output_on() if $disabled{apps}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-07-21 10:33:23 +00:00
|
|
|
install_runtime : install_shared _install_runtime_ns
|
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
install_engines : check_INSTALLTOP
|
2016-02-19 23:10:43 +00:00
|
|
|
@ {- output_off() unless scalar @{$unified_info{engines}}; "" -} !
|
2016-01-30 06:14:58 +00:00
|
|
|
@ WRITE SYS$OUTPUT "*** Installing engines"
|
2017-07-19 08:13:41 +00:00
|
|
|
- CREATE/DIR ossl_installroot:[ENGINES{- $sover_dirname.$target{pointer_size} -}.'arch']
|
2016-02-19 23:10:43 +00:00
|
|
|
{- join("\n ",
|
2017-07-19 08:13:41 +00:00
|
|
|
map { "COPY/PROT=W:RE $_.EXE ossl_installroot:[ENGINES$sover_dirname$target{pointer_size}.'arch']" }
|
2016-07-08 12:52:09 +00:00
|
|
|
@{$unified_info{install}->{engines}}) -}
|
2016-02-19 23:10:43 +00:00
|
|
|
@ {- output_on() unless scalar @{$unified_info{engines}}; "" -} !
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-06-16 22:23:43 +00:00
|
|
|
install_startup : [.VMS]openssl_startup.com [.VMS]openssl_shutdown.com -
|
2016-07-02 07:51:06 +00:00
|
|
|
[.VMS]openssl_utils.com, check_INSTALLTOP
|
2016-03-23 23:28:38 +00:00
|
|
|
- CREATE/DIR ossl_installroot:[SYS$STARTUP]
|
2016-07-06 16:53:56 +00:00
|
|
|
COPY/PROT=W:RE [.VMS]openssl_startup.com -
|
|
|
|
ossl_installroot:[SYS$STARTUP]openssl_startup{- $osslver -}.com
|
|
|
|
COPY/PROT=W:RE [.VMS]openssl_shutdown.com -
|
|
|
|
ossl_installroot:[SYS$STARTUP]openssl_shutdown{- $osslver -}.com
|
|
|
|
COPY/PROT=W:RE [.VMS]openssl_utils.com -
|
|
|
|
ossl_installroot:[SYS$STARTUP]openssl_utils{- $osslver -}.com
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2016-07-02 08:28:39 +00:00
|
|
|
install_ivp : [.VMS]openssl_ivp.com check_INSTALLTOP
|
|
|
|
- CREATE/DIR ossl_installroot:[SYSTEST]
|
2016-07-06 16:53:56 +00:00
|
|
|
COPY/PROT=W:RE [.VMS]openssl_ivp.com -
|
|
|
|
ossl_installroot:[SYSTEST]openssl_ivp{- $osslver -}.com
|
2016-07-02 08:28:39 +00:00
|
|
|
|
2016-05-14 08:51:58 +00:00
|
|
|
[.VMS]openssl_startup.com : vmsconfig.pm {- sourcefile("VMS", "openssl_startup.com.in") -}
|
2016-03-23 23:28:38 +00:00
|
|
|
- CREATE/DIR [.VMS]
|
2016-01-30 06:14:58 +00:00
|
|
|
$(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
|
|
|
|
{- sourcefile("VMS", "openssl_startup.com.in") -} -
|
|
|
|
> [.VMS]openssl_startup.com
|
|
|
|
|
2016-07-02 07:51:06 +00:00
|
|
|
[.VMS]openssl_utils.com : vmsconfig.pm {- sourcefile("VMS", "openssl_utils.com.in") -}
|
|
|
|
- CREATE/DIR [.VMS]
|
|
|
|
$(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
|
|
|
|
{- sourcefile("VMS", "openssl_utils.com.in") -} -
|
|
|
|
> [.VMS]openssl_utils.com
|
|
|
|
|
2016-05-14 08:51:58 +00:00
|
|
|
[.VMS]openssl_shutdown.com : vmsconfig.pm {- sourcefile("VMS", "openssl_shutdown.com.in") -}
|
2016-03-23 23:28:38 +00:00
|
|
|
- CREATE/DIR [.VMS]
|
2016-01-30 06:14:58 +00:00
|
|
|
$(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
|
|
|
|
{- sourcefile("VMS", "openssl_shutdown.com.in") -} -
|
|
|
|
> [.VMS]openssl_shutdown.com
|
|
|
|
|
2016-07-02 08:28:39 +00:00
|
|
|
[.VMS]openssl_ivp.com : vmsconfig.pm {- sourcefile("VMS", "openssl_ivp.com.in") -}
|
|
|
|
- CREATE/DIR [.VMS]
|
|
|
|
$(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
|
|
|
|
{- sourcefile("VMS", "openssl_ivp.com.in") -} -
|
|
|
|
> [.VMS]openssl_ivp.com
|
|
|
|
|
2016-02-19 01:30:51 +00:00
|
|
|
vmsconfig.pm : configdata.pm
|
2016-01-30 06:14:58 +00:00
|
|
|
OPEN/WRITE/SHARE=READ CONFIG []vmsconfig.pm
|
|
|
|
WRITE CONFIG "package vmsconfig;"
|
|
|
|
WRITE CONFIG "use strict; use warnings;"
|
|
|
|
WRITE CONFIG "use Exporter;"
|
|
|
|
WRITE CONFIG "our @ISA = qw(Exporter);"
|
2016-02-26 07:46:44 +00:00
|
|
|
WRITE CONFIG "our @EXPORT = qw(%config %target %withargs %unified_info %disabled);"
|
2016-01-30 06:14:58 +00:00
|
|
|
WRITE CONFIG "our %config = ("
|
2016-07-02 06:31:00 +00:00
|
|
|
WRITE CONFIG " target => '","{- $config{target} -}","',"
|
|
|
|
WRITE CONFIG " version => '","{- $config{version} -}","',"
|
2017-07-19 08:13:41 +00:00
|
|
|
WRITE CONFIG " shlib_version_number => '","{- $config{shlib_version_number} -}","',"
|
2016-07-02 06:31:00 +00:00
|
|
|
WRITE CONFIG " shlib_major => '","{- $config{shlib_major} -}","',"
|
|
|
|
WRITE CONFIG " shlib_minor => '","{- $config{shlib_minor} -}","',"
|
2016-02-22 12:52:46 +00:00
|
|
|
WRITE CONFIG " no_shared => '","{- $disabled{shared} -}","',"
|
2016-01-30 06:14:58 +00:00
|
|
|
WRITE CONFIG " INSTALLTOP => '$(INSTALLTOP)',"
|
|
|
|
WRITE CONFIG " OPENSSLDIR => '$(OPENSSLDIR)',"
|
2016-07-02 06:31:00 +00:00
|
|
|
WRITE CONFIG " pointer_size => '","{- $target{pointer_size} -}","',"
|
2016-01-30 06:14:58 +00:00
|
|
|
WRITE CONFIG ");"
|
|
|
|
WRITE CONFIG "our %target = ();"
|
2016-02-26 07:46:44 +00:00
|
|
|
WRITE CONFIG "our %disabled = ();"
|
2016-01-30 06:14:58 +00:00
|
|
|
WRITE CONFIG "our %withargs = ();"
|
|
|
|
WRITE CONFIG "our %unified_info = ();"
|
|
|
|
WRITE CONFIG "1;"
|
|
|
|
CLOSE CONFIG
|
|
|
|
|
2016-05-19 14:33:58 +00:00
|
|
|
install_html_docs : check_INSTALLTOP
|
2016-08-03 10:54:42 +00:00
|
|
|
sourcedir = F$PARSE("{- $sourcedir -}A.;","[]") - "]A.;" + ".DOC]"
|
|
|
|
$(PERL) {- sourcefile("util", "process_docs.pl") -} -
|
|
|
|
--sourcedir='sourcedir' --destdir=ossl_installroot:[HTML] -
|
|
|
|
--type=html
|
2016-05-19 14:33:58 +00:00
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
check_INSTALLTOP :
|
|
|
|
@ IF "$(INSTALLTOP)" .EQS. "" THEN -
|
|
|
|
WRITE SYS$ERROR "INSTALLTOP should not be empty"
|
|
|
|
@ IF "$(INSTALLTOP)" .EQS. "" THEN -
|
|
|
|
EXIT %x10000002
|
|
|
|
|
|
|
|
# Helper targets #####################################################
|
|
|
|
|
|
|
|
# Developer targets ##################################################
|
|
|
|
|
|
|
|
debug_logicals :
|
2016-05-23 16:35:23 +00:00
|
|
|
SH LOGICAL/PROC openssl,internal,ossl_installroot,ossl_dataroot
|
2016-01-30 06:14:58 +00:00
|
|
|
|
|
|
|
# Building targets ###################################################
|
|
|
|
|
2016-09-17 18:50:56 +00:00
|
|
|
configdata.pm : $(SRCDIR)Configure $(SRCDIR)config.com {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
|
2018-01-29 07:20:26 +00:00
|
|
|
perl configdata.pm -r -v
|
2016-01-30 06:14:58 +00:00
|
|
|
@ WRITE SYS$OUTPUT "*************************************************"
|
|
|
|
@ WRITE SYS$OUTPUT "*** ***"
|
|
|
|
@ WRITE SYS$OUTPUT "*** Please run the same mms command again ***"
|
|
|
|
@ WRITE SYS$OUTPUT "*** ***"
|
|
|
|
@ WRITE SYS$OUTPUT "*************************************************"
|
2016-02-19 01:30:51 +00:00
|
|
|
@ PIPE ( EXIT %X10000000 )
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2018-02-01 09:35:59 +00:00
|
|
|
reconfigure reconf :
|
2018-01-29 22:17:43 +00:00
|
|
|
perl configdata.pm -r -v
|
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
{-
|
|
|
|
use File::Basename;
|
|
|
|
use File::Spec::Functions qw/abs2rel rel2abs catfile catdir/;
|
2016-03-07 13:38:54 +00:00
|
|
|
|
2016-11-09 19:01:51 +00:00
|
|
|
# Helper function to figure out dependencies on libraries
|
|
|
|
# It takes a list of library names and outputs a list of dependencies
|
|
|
|
sub compute_lib_depends {
|
|
|
|
if ($disabled{shared}) {
|
|
|
|
return map { $_ =~ /\.a$/ ? $`.".OLB" : $_.".OLB" } @_;
|
|
|
|
}
|
|
|
|
return map { $_ =~ /\.a$/
|
|
|
|
? $`.".OLB"
|
|
|
|
: $unified_info{sharednames}->{$_}.".EXE" } @_;
|
|
|
|
}
|
|
|
|
|
2016-03-07 13:38:54 +00:00
|
|
|
sub generatesrc {
|
|
|
|
my %args = @_;
|
|
|
|
my $generator = join(" ", @{$args{generator}});
|
2016-04-21 12:30:08 +00:00
|
|
|
my $generator_incs = join("", map { ' "-I'.$_.'"' } @{$args{generator_incs}});
|
|
|
|
my $deps = join(", -\n\t\t", @{$args{generator_deps}}, @{$args{deps}});
|
2016-03-07 13:38:54 +00:00
|
|
|
|
|
|
|
if ($args{src} !~ /\.[sS]$/) {
|
2016-06-13 20:02:11 +00:00
|
|
|
if ($args{generator}->[0] =~ m|^.*\.in$|) {
|
|
|
|
my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
|
|
|
|
"util", "dofile.pl")),
|
|
|
|
rel2abs($config{builddir}));
|
|
|
|
return <<"EOF";
|
|
|
|
$args{src} : $args{generator}->[0] $deps
|
|
|
|
\$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile \\
|
|
|
|
"-o$target{build_file}" $generator > \$@
|
|
|
|
EOF
|
|
|
|
} else {
|
|
|
|
return <<"EOF";
|
2016-03-18 23:57:35 +00:00
|
|
|
$args{src} : $args{generator}->[0] $deps
|
2016-04-21 12:30:08 +00:00
|
|
|
\$(PERL)$generator_incs $generator > \$@
|
2016-03-07 13:38:54 +00:00
|
|
|
EOF
|
2016-06-13 20:02:11 +00:00
|
|
|
}
|
2016-03-07 13:38:54 +00:00
|
|
|
} else {
|
|
|
|
die "No method to generate assembler source present.\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 06:14:58 +00:00
|
|
|
sub src2obj {
|
|
|
|
my %args = @_;
|
2017-12-04 13:27:58 +00:00
|
|
|
(my $obj = $args{obj}) =~ s|\.o$||;
|
2016-01-30 06:14:58 +00:00
|
|
|
my $deps = join(", -\n\t\t", @{$args{srcs}}, @{$args{deps}});
|
|
|
|
|
|
|
|
# Because VMS C isn't very good at combining a /INCLUDE path with
|
|
|
|
# #includes having a relative directory (like '#include "../foo.h"),
|
|
|
|
# the best choice is to move to the first source file's intended
|
|
|
|
# directory before compiling, and make sure to write the object file
|
|
|
|
# in the correct position (important when the object tree is other
|
|
|
|
# than the source tree).
|
|
|
|
my $forward = dirname($args{srcs}->[0]);
|
|
|
|
my $backward = abs2rel(rel2abs("."), rel2abs($forward));
|
|
|
|
my $objd = abs2rel(rel2abs(dirname($obj)), rel2abs($forward));
|
|
|
|
my $objn = basename($obj);
|
|
|
|
my $srcs =
|
|
|
|
join(", ",
|
|
|
|
map { abs2rel(rel2abs($_), rel2abs($forward)) } @{$args{srcs}});
|
2018-01-23 12:54:55 +00:00
|
|
|
my $cflags = '$(CFLAGS)';
|
2016-09-08 17:23:38 +00:00
|
|
|
if ($args{installed}) {
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
$cflags = { lib => '$(LIB_CFLAGS)',
|
|
|
|
dso => '$(DSO_CFLAGS)',
|
|
|
|
bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
|
2016-09-08 17:23:38 +00:00
|
|
|
} else {
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
$cflags = { lib => '$(NO_INST_LIB_CFLAGS)',
|
|
|
|
dso => '$(NO_INST_DSO_CFLAGS)',
|
|
|
|
bin => '$(NO_INST_BIN_CFLAGS)' } -> {$args{intent}};
|
2016-09-08 17:23:38 +00:00
|
|
|
}
|
2018-01-23 12:54:55 +00:00
|
|
|
$cflags .= { lib => '$(LIB_CPPFLAGS)',
|
|
|
|
dso => '$(DSO_CPPFLAGS)',
|
|
|
|
bin => '$(BIN_CPPFLAGS)' } -> {$args{intent}};
|
|
|
|
|
2018-02-09 08:55:36 +00:00
|
|
|
# We create a logical name TMP_INCLUDES: to hold the list of internal
|
|
|
|
# includes. However, we cannot use it directly, as logical names can't
|
|
|
|
# hold zero entries, so we also create a symbol with the same name and
|
|
|
|
# use that instead, see the '/INCLUDE=' assignment above. If there are
|
|
|
|
# no internal include directories, it will simply be the empty string,
|
|
|
|
# but if there are, it will be assigned "TMP_DEFINES:,"
|
|
|
|
my $xtraincludes = { lib => '$(LIB_INCLUDES)',
|
|
|
|
dso => '$(DSO_INCLUDES)',
|
|
|
|
bin => '$(BIN_INCLUDES)' } -> {$args{intent}};
|
|
|
|
my $incs_add =
|
|
|
|
'IF tmp_add .NES. "" .AND. tmp_includes .NES. "" THEN tmp_includes = "," + tmp_includes'
|
|
|
|
."\n\t".'tmp_includes = tmp_add + tmp_includes';
|
|
|
|
my $incs_on = 'tmp_includes := '
|
|
|
|
."\n\t"."tmp_add := $xtraincludes"
|
|
|
|
."\n\t".$incs_add
|
|
|
|
."\n\t".'tmp_add := $(INCLUDES)'
|
|
|
|
."\n\t".$incs_add;
|
|
|
|
my $incs_off = 'DELETE/SYMBOL/LOCAL tmp_includes'
|
|
|
|
."\n\t".'DELETE/SYMBOL/LOCAL tmp_add';
|
2018-02-08 22:26:22 +00:00
|
|
|
if (@{$args{incs}}) {
|
2016-03-23 18:27:08 +00:00
|
|
|
$incs_on =
|
2018-02-09 08:55:36 +00:00
|
|
|
'DEFINE tmp_includes '
|
2016-03-23 18:27:08 +00:00
|
|
|
.join(",-\n\t\t\t", map {
|
|
|
|
file_name_is_absolute($_)
|
|
|
|
? $_ : catdir($backward,$_)
|
2018-02-08 22:26:22 +00:00
|
|
|
} @{$args{incs}})
|
2018-02-09 08:55:36 +00:00
|
|
|
."\n\t".$incs_on
|
|
|
|
."\n\t".'IF tmp_includes .NES. "" THEN tmp_includes = "," + tmp_includes'
|
|
|
|
."\n\t".'tmp_includes = "tmp_includes:" + tmp_includes';
|
|
|
|
$incs_off .=
|
|
|
|
"\n\t".'DEASSIGN tmp_includes';
|
2016-03-23 18:27:08 +00:00
|
|
|
}
|
2016-01-30 06:14:58 +00:00
|
|
|
my $before = $unified_info{before}->{$obj.".OBJ"} || "\@ !";
|
|
|
|
my $after = $unified_info{after}->{$obj.".OBJ"} || "\@ !";
|
2016-03-09 00:16:10 +00:00
|
|
|
my $depbuild = $disabled{makedepend} ? ""
|
2016-06-16 22:23:43 +00:00
|
|
|
: " /MMS=(FILE=${objd}${objn}.tmp-D,TARGET=$obj.OBJ)";
|
2016-01-30 06:14:58 +00:00
|
|
|
|
2017-12-11 20:01:18 +00:00
|
|
|
return <<"EOF"
|
2016-02-27 23:20:50 +00:00
|
|
|
$obj.OBJ : $deps
|
2016-02-19 01:34:20 +00:00
|
|
|
${before}
|
|
|
|
SET DEFAULT $forward
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
\@ $incs_on
|
2018-02-09 08:55:36 +00:00
|
|
|
\$(CC) ${cflags}${depbuild} /OBJECT=${objd}${objn}.OBJ /REPOSITORY=$backward $srcs
|
Harmonize the make variables across all known platforms families
The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
addition to CFLAGS and so on. This works without problem on Unix and
Windows, where options with different purposes (such as -D and -I) can
appear anywhere on the command line and get accumulated as they come.
This is not necessarely so on VMS. For example, macros must all be
collected and given through one /DEFINE, and the same goes for
inclusion directories (/INCLUDE).
So, to harmonize all platforms, we repurpose make variables starting
with LIB_, DSO_ and BIN_ to be all encompassing variables that
collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
INCLUDES and so on together with possible config target values
specific for libraries DSOs and programs, and use them instead of the
general ones everywhere.
This will, for example, allow VMS to use the exact same generators for
generated files that go through cpp as all other platforms, something
that has been impossible to do safely before now.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5357)
2018-02-13 19:32:42 +00:00
|
|
|
\@ $incs_off
|
2016-01-30 06:14:58 +00:00
|
|
|
SET DEFAULT $backward
|
|
|
|
${after}
|
2017-12-11 20:01:18 +00:00
|
|
|
- PURGE $obj.OBJ
|
|
|
|
EOF
|
|
|
|
. ($disabled{makedepend} ? "" : <<"EOF"
|
2016-06-16 22:23:43 +00:00
|
|
|
\@ PIPE ( \$(PERL) -e "use File::Compare qw/compare_text/; my \$x = compare_text(""$obj.D"",""$obj.tmp-D""); exit(0x10000000 + (\$x == 0));" || -
|
|
|
|
RENAME $obj.tmp-D $obj.d )
|
|
|
|
\@ IF F\$SEARCH("$obj.tmp-D") .NES. "" THEN DELETE $obj.tmp-D;*
|
2016-01-30 06:14:58 +00:00
|
|
|
EOF
|
2017-12-11 20:01:18 +00:00
|
|
|
);
|
2016-01-30 06:14:58 +00:00
|
|
|
}
|
|
|
|
sub libobj2shlib {
|
|
|
|
my %args = @_;
|
|
|
|
my $lib = $args{lib};
|
|
|
|
my $shlib = $args{shlib};
|
|
|
|
my $libd = dirname($lib);
|
|
|
|
my $libn = basename($lib);
|
2017-12-20 10:02:39 +00:00
|
|
|
my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x }
|
|
|
|
grep { $_ =~ m|\.o$| }
|
|
|
|
@{$args{objs}};
|
2017-12-04 13:27:58 +00:00
|
|
|
my @defs = grep { $_ =~ /\.opt$/ } @{$args{objs}};
|
2016-11-09 19:01:51 +00:00
|
|
|
my @deps = compute_lib_depends(@{$args{deps}});
|
2017-12-04 13:27:58 +00:00
|
|
|
die "More than one symbol vector" if scalar @defs > 1;
|
|
|
|
my $deps = join(", -\n\t\t", @defs, @deps);
|
2016-02-22 12:52:46 +00:00
|
|
|
my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
|
2016-01-30 06:14:58 +00:00
|
|
|
my $translatesyms_pl = abs2rel(rel2abs(catfile($config{sourcedir},
|
|
|
|
"VMS", "translatesyms.pl")),
|
|
|
|
rel2abs($config{builddir}));
|
|
|
|
# The "[]" hack is because in .OPT files, each line inherits the
|
|
|
|
# previous line's file spec as default, so if no directory spec
|
|
|
|
# is present in the current line and the previous line has one that
|
|
|
|
# doesn't apply, you're in for a surprise.
|
2017-12-20 10:02:39 +00:00
|
|
|
my $write_opt1 =
|
|
|
|
join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
|
|
|
|
"WRITE OPT_FILE \"$x" } @objs).
|
|
|
|
"\"";
|
|
|
|
my $write_opt2 =
|
2016-01-30 06:14:58 +00:00
|
|
|
join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
|
|
|
|
$x =~ s|(\.EXE)|$1/SHARE|;
|
2016-02-19 22:49:05 +00:00
|
|
|
$x =~ s|(\.OLB)|$1/LIB|;
|
2016-01-30 06:14:58 +00:00
|
|
|
"WRITE OPT_FILE \"$x\"" } @deps)
|
|
|
|
|| "\@ !";
|
2017-03-15 16:10:48 +00:00
|
|
|
return <<"EOF"
|
2017-12-04 13:27:58 +00:00
|
|
|
$shlib.EXE : $lib.OLB $deps
|
|
|
|
\$(PERL) $translatesyms_pl \$(BLDDIR)CXX\$DEMANGLER_DB. < $defs[0] > $defs[0]-translated
|
2017-12-20 10:02:39 +00:00
|
|
|
OPEN/WRITE/SHARE=READ OPT_FILE $lib-components.OPT
|
|
|
|
$write_opt1
|
|
|
|
$write_opt2
|
|
|
|
CLOSE OPT_FILE
|
|
|
|
LINK \$(LDFLAGS)/SHARE=\$\@ $defs[0]-translated/OPT,-
|
|
|
|
$lib-components.OPT/OPT \$(EX_LIBS)
|
|
|
|
DELETE $defs[0]-translated;*,$lib-components.OPT;*
|
2017-12-04 13:27:58 +00:00
|
|
|
PURGE $shlib.EXE,$shlib.MAP
|
2016-01-30 06:14:58 +00:00
|
|
|
EOF
|
2017-03-15 16:10:48 +00:00
|
|
|
. ($config{target} =~ m|alpha| ? "" : <<"EOF"
|
|
|
|
SET IMAGE/FLAGS=(NOCALL_DEBUG) \$\@
|
|
|
|
EOF
|
|
|
|
);
|
2016-01-30 06:14:58 +00:00
|
|
|
}
|
2016-02-15 17:45:54 +00:00
|
|
|
sub obj2dso {
|
2016-01-30 06:14:58 +00:00
|
|
|
my %args = @_;
|
|
|
|
my $lib = $args{lib};
|
|
|
|
my $libd = dirname($lib);
|
|
|
|
my $libn = basename($lib);
|
|
|
|
(my $libn_nolib = $libn) =~ s/^lib//;
|
2017-12-04 13:27:58 +00:00
|
|
|
my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x } @{$args{objs}};
|
2016-11-09 19:01:51 +00:00
|
|
|
my @deps = compute_lib_depends(@{$args{deps}});
|
2016-01-30 06:14:58 +00:00
|
|
|
my $deps = join(", -\n\t\t", @objs, @deps);
|
2016-02-22 12:52:46 +00:00
|
|
|
my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
|
2016-01-30 06:14:58 +00:00
|
|
|
my $engine_opt = abs2rel(rel2abs(catfile($config{sourcedir},
|
|
|
|
"VMS", "engine.opt")),
|
|
|
|
rel2abs($config{builddir}));
|
|
|
|
# The "[]" hack is because in .OPT files, each line inherits the
|
|
|
|
# previous line's file spec as default, so if no directory spec
|
|
|
|
# is present in the current line and the previous line has one that
|
|
|
|
# doesn't apply, you're in for a surprise.
|
2016-09-20 23:49:53 +00:00
|
|
|
my $write_opt1 =
|
2016-01-30 06:14:58 +00:00
|
|
|
join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
|
|
|
|
"WRITE OPT_FILE \"$x" } @objs).
|
2016-09-20 23:49:53 +00:00
|
|
|
"\"";
|
|
|
|
my $write_opt2 =
|
2016-01-30 06:14:58 +00:00
|
|
|
join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
|
|
|
|
$x =~ s|(\.EXE)|$1/SHARE|;
|
2016-02-19 22:49:05 +00:00
|
|
|
$x =~ s|(\.OLB)|$1/LIB|;
|
2016-01-30 06:14:58 +00:00
|
|
|
"WRITE OPT_FILE \"$x\"" } @deps)
|
|
|
|
|| "\@ !";
|
2017-03-15 16:10:48 +00:00
|
|
|
return <<"EOF"
|
2016-01-30 06:14:58 +00:00
|
|
|
$lib.EXE : $deps
|
|
|
|
OPEN/WRITE/SHARE=READ OPT_FILE $lib.OPT
|
|
|
|
TYPE $engine_opt /OUTPUT=OPT_FILE:
|
2016-09-20 23:49:53 +00:00
|
|
|
$write_opt1
|
|
|
|
$write_opt2
|
2016-01-30 06:14:58 +00:00
|
|
|
CLOSE OPT_FILE
|
2017-03-14 21:00:13 +00:00
|
|
|
LINK \$(LDFLAGS)/SHARE=\$\@ $lib.OPT/OPT \$(EX_LIBS)
|
2016-01-30 06:14:58 +00:00
|
|
|
- PURGE $lib.EXE,$lib.OPT,$lib.MAP
|
|
|
|
EOF
|
2017-03-15 16:10:48 +00:00
|
|
|
. ($config{target} =~ m|alpha| ? "" : <<"EOF"
|
|
|
|
SET IMAGE/FLAGS=(NOCALL_DEBUG) \$\@
|
|
|
|
EOF
|
|
|
|
);
|
2016-01-30 06:14:58 +00:00
|
|
|
}
|
|
|
|
sub obj2lib {
|
|
|
|
my %args = @_;
|
2017-04-18 14:24:23 +00:00
|
|
|
(my $lib = $args{lib}) =~ s/\.a$//;
|
2017-12-04 13:27:58 +00:00
|
|
|
my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x } @{$args{objs}};
|
|
|
|
my $objs = join(", -\n\t\t", @objs);
|
|
|
|
my $fill_lib = join("\n\t", (map { "LIBRARY/REPLACE $lib.OLB $_" }
|
|
|
|
@objs));
|
2016-01-30 06:14:58 +00:00
|
|
|
return <<"EOF";
|
|
|
|
$lib.OLB : $objs
|
2016-07-06 00:08:53 +00:00
|
|
|
LIBRARY/CREATE/OBJECT $lib.OLB
|
2016-01-30 06:14:58 +00:00
|
|
|
$fill_lib
|
|
|
|
- PURGE $lib.OLB
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
sub obj2bin {
|
|
|
|
my %args = @_;
|
|
|
|
my $bin = $args{bin};
|
|
|
|
my $bind = dirname($bin);
|
|
|
|
my $binn = basename($bin);
|
2017-12-04 13:27:58 +00:00
|
|
|
my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x } @{$args{objs}};
|
2017-04-19 10:32:42 +00:00
|
|
|
my $objs = join(",", @objs);
|
2016-11-09 19:01:51 +00:00
|
|
|
my @deps = compute_lib_depends(@{$args{deps}});
|
2016-01-30 06:14:58 +00:00
|
|
|
my $deps = join(", -\n\t\t", @objs, @deps);
|
2017-04-19 10:32:42 +00:00
|
|
|
|
|
|
|
my $olb_count = scalar grep(m|\.OLB$|, @deps);
|
|
|
|
my $analyse_objs = "@ !";
|
|
|
|
if ($olb_count > 0) {
|
|
|
|
my $analyse_quals =
|
|
|
|
$config{target} =~ m|alpha| ? "/GSD" : "/SECTIONS=SYMTAB";
|
|
|
|
$analyse_objs = "- pipe ANALYSE/OBJECT$analyse_quals $objs | SEARCH SYS\$INPUT \"\"\"main\"\"\" ; nomain = \$severity .NE. 1"
|
|
|
|
}
|
2016-01-30 06:14:58 +00:00
|
|
|
# The "[]" hack is because in .OPT files, each line inherits the
|
|
|
|
# previous line's file spec as default, so if no directory spec
|
|
|
|
# is present in the current line and the previous line has one that
|
|
|
|
# doesn't apply, you're in for a surprise.
|
2016-09-20 23:49:53 +00:00
|
|
|
my $write_opt1 =
|
2016-01-30 06:14:58 +00:00
|
|
|
join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
|
2017-04-19 10:32:42 +00:00
|
|
|
"\@ WRITE OPT_FILE \"$x" } @objs).
|
2016-09-20 23:49:53 +00:00
|
|
|
"\"";
|
|
|
|
my $write_opt2 =
|
2017-04-19 10:32:42 +00:00
|
|
|
join("\n\t", map { my @lines = ();
|
|
|
|
my $x = $_ =~ /\[/ ? $_ : "[]".$_;
|
|
|
|
if ($x =~ m|\.EXE$|) {
|
|
|
|
push @lines, "\@ WRITE OPT_FILE \"$x/SHARE\"";
|
|
|
|
} elsif ($x =~ m|\.OLB$|) {
|
|
|
|
(my $l = $x) =~ s/\W/_/g;
|
|
|
|
push @lines,
|
|
|
|
"\@ IF nomain THEN WRITE OPT_FILE \"$x/LIB\$(INCLUDE_MAIN_$l)\"",
|
|
|
|
"\@ IF .NOT. nomain THEN WRITE OPT_FILE \"$x/LIB\""
|
|
|
|
}
|
|
|
|
@lines
|
|
|
|
} @deps)
|
2016-01-30 06:14:58 +00:00
|
|
|
|| "\@ !";
|
2016-10-26 20:31:29 +00:00
|
|
|
# The linking commands looks a bit complex, but it's for good reason.
|
|
|
|
# When you link, say, foo.obj, bar.obj and libsomething.exe/share, and
|
|
|
|
# bar.obj happens to have a symbol that also exists in libsomething.exe,
|
|
|
|
# the linker will warn about it, loudly, and will then choose to pick
|
|
|
|
# the first copy encountered (the one in bar.obj in this example).
|
|
|
|
# On Unix and on Windows, the corresponding maneuvre goes through
|
|
|
|
# silently with the same effect.
|
|
|
|
# With some test programs, made for checking the internals of OpenSSL,
|
|
|
|
# we do this kind of linking deliberately, picking a few specific object
|
|
|
|
# files from within [.crypto] or [.ssl] so we can reach symbols that are
|
|
|
|
# otherwise unreachable (since the shareable images only exports the
|
|
|
|
# symbols listed in [.util]*.num), and then with the shared libraries
|
|
|
|
# themselves. So we need to silence the warning about multiply defined
|
|
|
|
# symbols, to mimic the way linking work on Unix and Windows, and so
|
|
|
|
# the build isn't interrupted (MMS stops when warnings are signaled,
|
|
|
|
# by default), and so someone building doesn't have to worry where it
|
|
|
|
# isn't necessary. If there are other warnings, however, we show them
|
|
|
|
# and let it break the build.
|
2017-03-15 16:10:48 +00:00
|
|
|
return <<"EOF"
|
2016-01-30 06:14:58 +00:00
|
|
|
$bin.EXE : $deps
|
2017-04-19 10:32:42 +00:00
|
|
|
$analyse_objs
|
|
|
|
@ OPEN/WRITE/SHARE=READ OPT_FILE $bin.OPT
|
2016-09-20 23:49:53 +00:00
|
|
|
$write_opt1
|
|
|
|
$write_opt2
|
2017-04-19 10:32:42 +00:00
|
|
|
@ CLOSE OPT_FILE
|
|
|
|
TYPE $bin.opt ! For debugging
|
2016-10-26 20:31:29 +00:00
|
|
|
- pipe SPAWN/WAIT/NOLOG/OUT=$bin.LINKLOG -
|
2017-03-14 21:00:13 +00:00
|
|
|
LINK \$(LDFLAGS)/EXEC=\$\@ $bin.OPT/OPT \$(EX_LIBS) ; -
|
2016-10-26 20:31:29 +00:00
|
|
|
link_status = \$status ; link_severity = link_status .AND. 7
|
|
|
|
@ search_severity = 1
|
|
|
|
-@ IF link_severity .EQ. 0 THEN -
|
|
|
|
pipe SEARCH $bin.LINKLOG "%","-"/MATCH=AND | -
|
|
|
|
SPAWN/WAIT/NOLOG/OUT=NLA0: -
|
|
|
|
SEARCH SYS\$INPUT: "-W-MULDEF,"/MATCH=NOR ; -
|
|
|
|
search_severity = \$severity
|
|
|
|
@ ! search_severity is 3 when the last search didn't find any matching
|
|
|
|
@ ! string: %SEARCH-I-NOMATCHES, no strings matched
|
2016-11-04 13:08:25 +00:00
|
|
|
@ ! If that was the result, we pretend linking got through without
|
|
|
|
@ ! fault or warning.
|
|
|
|
@ IF search_severity .EQ. 3 THEN link_severity = 1
|
|
|
|
@ ! At this point, if link_severity shows that there was a fault
|
|
|
|
@ ! or warning, make sure to restore the linking status.
|
|
|
|
-@ IF .NOT. link_severity THEN TYPE $bin.LINKLOG
|
2016-10-26 20:31:29 +00:00
|
|
|
-@ DELETE $bin.LINKLOG;*
|
2016-11-04 13:08:25 +00:00
|
|
|
@ IF .NOT. link_severity THEN SPAWN/WAIT/NOLOG EXIT 'link_status'
|
2016-01-30 06:14:58 +00:00
|
|
|
- PURGE $bin.EXE,$bin.OPT
|
|
|
|
EOF
|
2017-04-19 10:32:42 +00:00
|
|
|
. ($config{target} =~ m|alpha| ? "" : <<"EOF"
|
2017-03-15 16:10:48 +00:00
|
|
|
SET IMAGE/FLAGS=(NOCALL_DEBUG) \$\@
|
|
|
|
EOF
|
|
|
|
);
|
2016-01-30 06:14:58 +00:00
|
|
|
}
|
|
|
|
sub in2script {
|
|
|
|
my %args = @_;
|
|
|
|
my $script = $args{script};
|
|
|
|
return "" if grep { $_ eq $script } @{$args{sources}}; # No overwrite!
|
|
|
|
my $sources = join(" ", @{$args{sources}});
|
|
|
|
my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
|
|
|
|
"util", "dofile.pl")),
|
|
|
|
rel2abs($config{builddir}));
|
|
|
|
return <<"EOF";
|
|
|
|
$script : $sources
|
2016-06-14 20:03:08 +00:00
|
|
|
\$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile -
|
2016-02-14 07:47:47 +00:00
|
|
|
"-o$target{build_file}" $sources > $script
|
2016-01-30 06:14:58 +00:00
|
|
|
SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script
|
|
|
|
PURGE $script
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
"" # Important! This becomes part of the template result.
|
|
|
|
-}
|