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
path: root/crypto
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-01-17 01:06:22 +0300
committerAdam Langley <agl@google.com>2015-01-17 01:06:22 +0300
commite49da742cb8da281bbeaa7a54aad90aa5d3d19fe (patch)
tree610a732785cf11cccb070b3f8bc1b3d566a90d34 /crypto
parente7624340ee41370c79a4529799d5ffe9d5ca258e (diff)
Include arm_arch.h in e_aes.c.
Not sure why this is working in CMake build, but the Chromium trybots aren't happy without it. Change-Id: I810740786c4f3cb9ba786891fdcd6053eea3afcb
Diffstat (limited to 'crypto')
-rw-r--r--crypto/cipher/e_aes.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/cipher/e_aes.c b/crypto/cipher/e_aes.c
index 0b8b4b95..67a36e2f 100644
--- a/crypto/cipher/e_aes.c
+++ b/crypto/cipher/e_aes.c
@@ -59,6 +59,10 @@
#include "internal.h"
#include "../modes/internal.h"
+#if defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64)
+#include "../arm_arch.h"
+#endif
+
typedef struct {
union {