diff options
author | Theo Buehler <tb@openbsd.org> | 2024-03-28 23:15:05 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-03-28 23:15:05 -0600 |
commit | 1d6c6c1cbda79a42049acd7fb0556bdbddd74d93 (patch) | |
tree | 6bacfac7fc4d0c3bfd3ef557a1020241d0141410 /crypto/Makefile.am | |
parent | 34c4d6621a0b58709cd2418cce9953a8d457f175 (diff) | |
download | portable-1d6c6c1cbda79a42049acd7fb0556bdbddd74d93.tar.gz portable-1d6c6c1cbda79a42049acd7fb0556bdbddd74d93.tar.bz2 portable-1d6c6c1cbda79a42049acd7fb0556bdbddd74d93.zip |
Consolidate AES sources
Diffstat (limited to 'crypto/Makefile.am')
-rw-r--r-- | crypto/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index e070867..d6a551b 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -196,7 +196,6 @@ if !HOST_ASM_MACOSX_X86_64 | |||
196 | if !HOST_ASM_MASM_X86_64 | 196 | if !HOST_ASM_MASM_X86_64 |
197 | if !HOST_ASM_MINGW64_X86_64 | 197 | if !HOST_ASM_MINGW64_X86_64 |
198 | libcrypto_la_CPPFLAGS += -DOPENSSL_NO_ASM | 198 | libcrypto_la_CPPFLAGS += -DOPENSSL_NO_ASM |
199 | libcrypto_la_SOURCES += aes/aes_core.c | ||
200 | libcrypto_la_SOURCES += camellia/camellia.c | 199 | libcrypto_la_SOURCES += camellia/camellia.c |
201 | libcrypto_la_SOURCES += camellia/cmll_cbc.c | 200 | libcrypto_la_SOURCES += camellia/cmll_cbc.c |
202 | endif | 201 | endif |
@@ -231,6 +230,7 @@ noinst_HEADERS += x86_arch.h | |||
231 | 230 | ||
232 | # aes | 231 | # aes |
233 | libcrypto_la_SOURCES += aes/aes.c | 232 | libcrypto_la_SOURCES += aes/aes.c |
233 | libcrypto_la_SOURCES += aes/aes_core.c | ||
234 | libcrypto_la_SOURCES += aes/aes_ige.c | 234 | libcrypto_la_SOURCES += aes/aes_ige.c |
235 | noinst_HEADERS += aes/aes_local.h | 235 | noinst_HEADERS += aes/aes_local.h |
236 | 236 | ||