diff options
author | jsg <> | 2015-06-29 06:40:06 +0000 |
---|---|---|
committer | jsg <> | 2015-06-29 06:40:06 +0000 |
commit | ee7605a32d674075555e0ea39312bd67abc4aecc (patch) | |
tree | 69d9d35cb53a9245be16c54dd8c3f793f8c8031e /src/lib | |
parent | b36ffe2dedec4d6117f4718449035d1c5338df1c (diff) | |
download | openbsd-ee7605a32d674075555e0ea39312bd67abc4aecc.tar.gz openbsd-ee7605a32d674075555e0ea39312bd67abc4aecc.tar.bz2 openbsd-ee7605a32d674075555e0ea39312bd67abc4aecc.zip |
fix the build on arm after the recent addition of -Wundef
ok doug@ deraadt@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/arm_arch.h | 4 | ||||
-rw-r--r-- | src/lib/libssl/src/crypto/arm_arch.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/arm_arch.h b/src/lib/libcrypto/arm_arch.h index 2ad95dc62a..3304be81ab 100644 --- a/src/lib/libcrypto/arm_arch.h +++ b/src/lib/libcrypto/arm_arch.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: arm_arch.h,v 1.6 2014/12/07 15:37:27 miod Exp $ */ | 1 | /* $OpenBSD: arm_arch.h,v 1.7 2015/06/29 06:40:06 jsg Exp $ */ |
2 | #ifndef __ARM_ARCH_H__ | 2 | #ifndef __ARM_ARCH_H__ |
3 | #define __ARM_ARCH_H__ | 3 | #define __ARM_ARCH_H__ |
4 | 4 | ||
@@ -38,7 +38,7 @@ | |||
38 | # endif | 38 | # endif |
39 | #endif | 39 | #endif |
40 | 40 | ||
41 | #if !__ASSEMBLER__ | 41 | #if !defined(__ASSEMBLER__) |
42 | extern unsigned int OPENSSL_armcap_P; | 42 | extern unsigned int OPENSSL_armcap_P; |
43 | 43 | ||
44 | #define ARMV7_NEON (1<<0) | 44 | #define ARMV7_NEON (1<<0) |
diff --git a/src/lib/libssl/src/crypto/arm_arch.h b/src/lib/libssl/src/crypto/arm_arch.h index 2ad95dc62a..3304be81ab 100644 --- a/src/lib/libssl/src/crypto/arm_arch.h +++ b/src/lib/libssl/src/crypto/arm_arch.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: arm_arch.h,v 1.6 2014/12/07 15:37:27 miod Exp $ */ | 1 | /* $OpenBSD: arm_arch.h,v 1.7 2015/06/29 06:40:06 jsg Exp $ */ |
2 | #ifndef __ARM_ARCH_H__ | 2 | #ifndef __ARM_ARCH_H__ |
3 | #define __ARM_ARCH_H__ | 3 | #define __ARM_ARCH_H__ |
4 | 4 | ||
@@ -38,7 +38,7 @@ | |||
38 | # endif | 38 | # endif |
39 | #endif | 39 | #endif |
40 | 40 | ||
41 | #if !__ASSEMBLER__ | 41 | #if !defined(__ASSEMBLER__) |
42 | extern unsigned int OPENSSL_armcap_P; | 42 | extern unsigned int OPENSSL_armcap_P; |
43 | 43 | ||
44 | #define ARMV7_NEON (1<<0) | 44 | #define ARMV7_NEON (1<<0) |