diff options
author | Richard Levitte <levitte@openssl.org> | 2016-10-31 16:40:36 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-10-31 16:59:31 +0100 |
commit | be1f4812111aa76f12db91d9059ead3b43314b4c (patch) | |
tree | c6da2c6984d1f15d5414900d68c7fe770caeee03 /Configurations/10-main.conf | |
parent | Try to unify BIO read/write parameter names (diff) | |
download | openssl-be1f4812111aa76f12db91d9059ead3b43314b4c.tar.xz openssl-be1f4812111aa76f12db91d9059ead3b43314b4c.zip |
Mark VC templates correctly.
VC-noCE-common and VC-WIN64-common were missing this line:
template => 1,
Fixes GH#1809
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1811)
Diffstat (limited to '')
-rw-r--r-- | Configurations/10-main.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 7c9b1905a8..9b4c78fd07 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -1295,6 +1295,7 @@ sub vms_info { }, "VC-noCE-common" => { inherit_from => [ "VC-common" ], + template => 1, cflags => add(picker(default => "-DUNICODE -D_UNICODE", debug => sub { @@ -1331,6 +1332,7 @@ sub vms_info { }, "VC-WIN64-common" => { inherit_from => [ "VC-noCE-common" ], + template => 1, ex_libs => add(sub { my @ex_libs = (); push @ex_libs, 'bufferoverflowu.lib' if (`cl 2>&1` =~ /14\.00\.4[0-9]{4}\./); |