mirror of https://github.com/openssl/openssl.git
Allow setting RCFLAGS as Configure option or environment variable
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8803)
This commit is contained in:
parent
a583172dac
commit
0c4e984de2
|
|
@ -594,7 +594,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
|
||||||
|
|
@ -611,6 +611,7 @@ my %useradd = (
|
||||||
CXXFLAGS => [],
|
CXXFLAGS => [],
|
||||||
LDFLAGS => [],
|
LDFLAGS => [],
|
||||||
LDLIBS => [],
|
LDLIBS => [],
|
||||||
|
RCFLAGS => [],
|
||||||
);
|
);
|
||||||
|
|
||||||
my %user_synonyms = (
|
my %user_synonyms = (
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue