diff options
author | Brent Cook <bcook@openbsd.org> | 2018-11-11 02:08:55 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2018-11-11 02:08:55 -0600 |
commit | 8f32297dcedbb883b29f7a9e102dd34c7b69af6c (patch) | |
tree | 2396f0654815b29a0dfcf1411b73b65ece789215 /crypto | |
parent | 9c6e9f09958396a4cca93c6026239ce24bad7e1d (diff) | |
download | portable-8f32297dcedbb883b29f7a9e102dd34c7b69af6c.tar.gz portable-8f32297dcedbb883b29f7a9e102dd34c7b69af6c.tar.bz2 portable-8f32297dcedbb883b29f7a9e102dd34c7b69af6c.zip |
add arm asm support via autoconf/make
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 864b2d3..ba96c51 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -192,9 +192,11 @@ include Makefile.am.arc4random | |||
192 | libcrypto_la_SOURCES = | 192 | libcrypto_la_SOURCES = |
193 | EXTRA_libcrypto_la_SOURCES = | 193 | EXTRA_libcrypto_la_SOURCES = |
194 | 194 | ||
195 | include Makefile.am.elf-arm | ||
195 | include Makefile.am.elf-x86_64 | 196 | include Makefile.am.elf-x86_64 |
196 | include Makefile.am.macosx-x86_64 | 197 | include Makefile.am.macosx-x86_64 |
197 | 198 | ||
199 | if !HOST_ASM_ELF_ARM | ||
198 | if !HOST_ASM_ELF_X86_64 | 200 | if !HOST_ASM_ELF_X86_64 |
199 | if !HOST_ASM_MACOSX_X86_64 | 201 | if !HOST_ASM_MACOSX_X86_64 |
200 | libcrypto_la_SOURCES += aes/aes_cbc.c | 202 | libcrypto_la_SOURCES += aes/aes_cbc.c |
@@ -206,6 +208,7 @@ libcrypto_la_SOURCES += rc4/rc4_skey.c | |||
206 | libcrypto_la_SOURCES += whrlpool/wp_block.c | 208 | libcrypto_la_SOURCES += whrlpool/wp_block.c |
207 | endif | 209 | endif |
208 | endif | 210 | endif |
211 | endif | ||
209 | 212 | ||
210 | libcrypto_la_SOURCES += cpt_err.c | 213 | libcrypto_la_SOURCES += cpt_err.c |
211 | libcrypto_la_SOURCES += cryptlib.c | 214 | libcrypto_la_SOURCES += cryptlib.c |