From e548c1fe98e35888e8ad90b16a4fdcd3ab577210 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sun, 28 Jan 2018 13:26:01 +0100 Subject: [PATCH] Fix WinCE config target vc_wince_info()->{defines} was left around, when it should be vc_wince_info()->{cppflags} Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/5182) --- Configurations/10-main.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 21b4f3b2c4..6830294e47 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -1433,7 +1433,7 @@ my %targets = ( : " /MC"; }), debug => "/Od", release => "/O1i"), - cppflags => sub { vc_wince_info()->{defines}; }, + cppflags => sub { vc_wince_info()->{cppflags}; }, defines => picker(default => [ "UNICODE", "_UNICODE", "OPENSSL_SYS_WINCE", "WIN32_LEAN_AND_MEAN", "L_ENDIAN", "DSO_WIN32", -- 2.25.1