summaryrefslogtreecommitdiff
path: root/openssl/build
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-07 23:02:44 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-08 19:30:45 +0300
commit67a733cd316638b31b5771f61e3b7f1d11f731f9 (patch)
tree4916b8ecbf4b10a4596e053630f901b469677e83 /openssl/build
parent58745c41ec65d13a59559d423f698f9f8ad92361 (diff)
Release version 1.1.1+5v1.1.1+5
Adapt for building with Clang on Windows
Diffstat (limited to 'openssl/build')
-rw-r--r--openssl/build/root.build8
1 files changed, 5 insertions, 3 deletions
diff --git a/openssl/build/root.build b/openssl/build/root.build
index 2a4a530..e5ca350 100644
--- a/openssl/build/root.build
+++ b/openssl/build/root.build
@@ -7,6 +7,8 @@ using c
h{*}: extension = h
c{*}: extension = c
-# The test target for cross-testing (running tests under Wine, etc).
-#
-test.target = $c.target
+if ($c.target.system == 'win32-msvc')
+ c.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+
+if ($c.class == 'msvc')
+ c.coptions += /wd4251 /wd4275 /wd4800