summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorWojciech Kaluza <w-kaluza@tlen.pl>2019-04-21 12:14:34 +0100
committerRichard Levitte <levitte@openssl.org>2019-05-02 11:14:21 +0200
commita583172dac8bce37e268943e570968f193e8b64b (patch)
treeab263661184b2e5ba1cfffc6aaffee70dd609205 /Configurations/windows-makefile.tmpl
parente8fb288cc5057bb198a7f1c6e46f3b64b5d7a476 (diff)
Add RCFLAGS variable in Windows build file, and use it
- Allow user-defined RCFLAGS - Pass RCFLAGS to RC Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8803)
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r--Configurations/windows-makefile.tmpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index a1daf7d696..de59794103 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -206,6 +206,7 @@ AS={- $config{AS} -}
ASFLAGS={- join(' ', @{$config{ASFLAGS}}) -}
RC={- $config{RC} -}
+RCFLAGS={- join(' ', @{$config{RCFLAGS}}) -}
ECHO="$(PERL)" "$(SRCDIR)\util\echo.pl"
@@ -630,7 +631,7 @@ EOF
my $res = platform->res($args{obj});
return <<"EOF";
$res: $deps
- \$(RC) \$(RCOUTFLAG)\$\@ $srcs
+ \$(RC) \$(RCFLAGS) \$(RCOUTFLAG)\$\@ $srcs
EOF
}
my $obj = platform->obj($args{obj});