diff options
| author | Theo Buehler <tb@openbsd.org> | 2024-11-05 04:27:16 -0700 |
|---|---|---|
| committer | Theo Buehler <tb@openbsd.org> | 2024-11-05 04:27:16 -0700 |
| commit | 1a3e756a757da607621949b43f97fb79b6fb31ae (patch) | |
| tree | d44d20b0a1934392cd24a05a4385c0765181615a | |
| parent | b29d115ad24299042326c358da7444dd1699e36e (diff) | |
| download | portable-1a3e756a757da607621949b43f97fb79b6fb31ae.tar.gz portable-1a3e756a757da607621949b43f97fb79b6fb31ae.tar.bz2 portable-1a3e756a757da607621949b43f97fb79b6fb31ae.zip | |
adapt to my upstream churn
| -rw-r--r-- | crypto/CMakeLists.txt | 8 | ||||
| -rw-r--r-- | crypto/Makefile.am | 8 |
2 files changed, 4 insertions, 12 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index b5b62ed..5168e79 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
| @@ -189,15 +189,11 @@ endif() | |||
| 189 | set( | 189 | set( |
| 190 | CRYPTO_SRC | 190 | CRYPTO_SRC |
| 191 | ${CRYPTO_SRC} | 191 | ${CRYPTO_SRC} |
| 192 | cpt_err.c | 192 | crypto_err.c |
| 193 | cryptlib.c | ||
| 194 | crypto_ex_data.c | 193 | crypto_ex_data.c |
| 195 | crypto_init.c | 194 | crypto_init.c |
| 196 | cversion.c | 195 | crypto_legacy.c |
| 197 | malloc-wrapper.c | 196 | malloc-wrapper.c |
| 198 | mem_clr.c | ||
| 199 | mem_dbg.c | ||
| 200 | o_fips.c | ||
| 201 | aes/aes.c | 197 | aes/aes.c |
| 202 | aes/aes_core.c | 198 | aes/aes_core.c |
| 203 | aes/aes_ige.c | 199 | aes/aes_ige.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index b4e8bd8..2f61f7d 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
| @@ -209,20 +209,16 @@ if HOST_I386 | |||
| 209 | libcrypto_la_SOURCES += arch/i386/crypto_cpu_caps.c | 209 | libcrypto_la_SOURCES += arch/i386/crypto_cpu_caps.c |
| 210 | endif | 210 | endif |
| 211 | 211 | ||
| 212 | libcrypto_la_SOURCES += cpt_err.c | 212 | libcrypto_la_SOURCES += crypto_err.c |
| 213 | libcrypto_la_SOURCES += cryptlib.c | ||
| 214 | libcrypto_la_SOURCES += crypto_ex_data.c | 213 | libcrypto_la_SOURCES += crypto_ex_data.c |
| 215 | libcrypto_la_SOURCES += crypto_init.c | 214 | libcrypto_la_SOURCES += crypto_init.c |
| 215 | libcrypto_la_SOURCES += crypto_legacy.c | ||
| 216 | if !HOST_WIN | 216 | if !HOST_WIN |
| 217 | libcrypto_la_SOURCES += crypto_lock.c | 217 | libcrypto_la_SOURCES += crypto_lock.c |
| 218 | else | 218 | else |
| 219 | libcrypto_la_SOURCES += compat/crypto_lock_win.c | 219 | libcrypto_la_SOURCES += compat/crypto_lock_win.c |
| 220 | endif | 220 | endif |
| 221 | libcrypto_la_SOURCES += cversion.c | ||
| 222 | libcrypto_la_SOURCES += malloc-wrapper.c | 221 | libcrypto_la_SOURCES += malloc-wrapper.c |
| 223 | libcrypto_la_SOURCES += mem_clr.c | ||
| 224 | libcrypto_la_SOURCES += mem_dbg.c | ||
| 225 | libcrypto_la_SOURCES += o_fips.c | ||
| 226 | noinst_HEADERS += arm_arch.h | 222 | noinst_HEADERS += arm_arch.h |
| 227 | noinst_HEADERS += constant_time.h | 223 | noinst_HEADERS += constant_time.h |
| 228 | noinst_HEADERS += crypto_internal.h | 224 | noinst_HEADERS += crypto_internal.h |
