提交 68b8769e 编写于 作者: W Wojciech Kaluza 提交者: Richard Levitte

Allow setting RCFLAGS as Configure option or environment variable

Reviewed-by: NTim Hudson <tjh@openssl.org>
Reviewed-by: NRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8803)

(cherry picked from commit 0c4e984de28b1477e002766b2751576f5c6c47d6)
上级 1e8ae82e
...@@ -562,7 +562,7 @@ my %user = ( ...@@ -562,7 +562,7 @@ my %user = (
PERL => env('PERL') || ($^O ne "VMS" ? $^X : "perl"), PERL => env('PERL') || ($^O ne "VMS" ? $^X : "perl"),
RANLIB => env('RANLIB'), RANLIB => env('RANLIB'),
RC => env('RC') || env('WINDRES'), RC => env('RC') || env('WINDRES'),
RCFLAGS => [], RCFLAGS => [ env('RCFLAGS') || () ],
RM => undef, RM => undef,
); );
# Info about what "make variables" may be prefixed with the cross compiler # Info about what "make variables" may be prefixed with the cross compiler
...@@ -579,6 +579,7 @@ my %useradd = ( ...@@ -579,6 +579,7 @@ my %useradd = (
CXXFLAGS => [], CXXFLAGS => [],
LDFLAGS => [], LDFLAGS => [],
LDLIBS => [], LDLIBS => [],
RCFLAGS => [],
); );
my %user_synonyms = ( my %user_synonyms = (
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册