[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Sun Jan 28 13:52:35 UTC 2018
The branch master has been updated
via e548c1fe98e35888e8ad90b16a4fdcd3ab577210 (commit)
from d4deecc203bf3a7bcc5f31529692f5b668c0c2bc (commit)
- Log -----------------------------------------------------------------
commit e548c1fe98e35888e8ad90b16a4fdcd3ab577210
Author: Richard Levitte <levitte at openssl.org>
Date: Sun Jan 28 13:26:01 2018 +0100
Fix WinCE config target
vc_wince_info()->{defines} was left around, when it should be
vc_wince_info()->{cppflags}
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5182)
-----------------------------------------------------------------------
Summary of changes:
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 21b4f3b..6830294 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",
More information about the openssl-commits
mailing list