mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
VMS: Fix descrip.mms template
away the use of $(DEFINES), which does get populated with defines
given through configuration. This makes it impossible to configure
with extra defines on VMS. Uncommenting and moving $(DEFINES) to a
more proper spot gives the users back that ability.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16561)
(cherry picked from commit 1dc15a3330
)
This commit is contained in:
parent
cf1a231d44
commit
2f9ded524c
@ -110,9 +110,9 @@
|
||||
@cnf_defines,
|
||||
'OPENSSLDIR="""$(OPENSSLDIR_C)"""',
|
||||
'ENGINESDIR="""$(ENGINESDIR_C)"""',
|
||||
'MODULESDIR="""$(MODULESDIR_C)"""',
|
||||
#'$(DEFINES)'
|
||||
'MODULESDIR="""$(MODULESDIR_C)"""'
|
||||
)
|
||||
. '$(DEFINES)'
|
||||
. "'extradefines'";
|
||||
our $lib_asflags =
|
||||
join(' ', $target{lib_asflags} || (), @{$config{lib_asflags}},
|
||||
@ -144,8 +144,8 @@
|
||||
join(',', @{$target{dso_defines}}, @{$target{module_defines}},
|
||||
@{$config{dso_defines}}, @{$config{module_defines}},
|
||||
@cnf_defines,
|
||||
#'$(DEFINES)'
|
||||
)
|
||||
. '$(DEFINES)'
|
||||
. "'extradefines'";
|
||||
our $dso_asflags =
|
||||
join(' ', $target{dso_asflags} || (), $target{module_asflags} || (),
|
||||
@ -180,8 +180,8 @@
|
||||
join(',', @{$target{bin_defines}},
|
||||
@{$config{bin_defines}},
|
||||
@cnf_defines,
|
||||
#'$(DEFINES)'
|
||||
)
|
||||
. '$(DEFINES)'
|
||||
. "'extradefines'";
|
||||
our $bin_asflags =
|
||||
join(' ', $target{bin_asflags} || (),
|
||||
|
Loading…
Reference in New Issue
Block a user