Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-10-12 22:38:11 +0300
committerGitHub <noreply@github.com>2016-10-12 22:38:11 +0300
commit8c01551f4ce2bf7482dfc293715f468ed6fb18d2 (patch)
treebf55e093b22ce918f31da2d681a97173d3b44fb5
parentac52e8869135c01cf1b4f53f38cef19786c9ec2a (diff)
parent2f7b9e65736d81214a358c119d91f4f894c620e3 (diff)
Merge pull request #1 from nealef/mono
Enable build on z Systems (s390x)
-rw-r--r--include/openssl/base.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/openssl/base.h b/include/openssl/base.h
index 79f02cd4..413c1630 100644
--- a/include/openssl/base.h
+++ b/include/openssl/base.h
@@ -90,6 +90,9 @@ extern "C" {
#elif defined(__pnacl__)
#define OPENSSL_32_BIT
#define OPENSSL_PNACL
+#elif defined(__s390x__)
+#define OPENSSL_64_BIT
+#define OPENSSL_S390X
#else
#error "Unknown target CPU"
#endif