diff options
author | Theo Buehler <tb@openbsd.org> | 2024-08-02 04:54:22 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-08-02 04:54:22 -0600 |
commit | 15451aff6bb61c9a7c8552c84109f3fc6daa242d (patch) | |
tree | 08c783beae94cc08f60328013e8b17e824fbf9d1 | |
parent | a94f45b44d5e19f0d0f025594cb9a0aa9ac1e6a3 (diff) | |
download | portable-15451aff6bb61c9a7c8552c84109f3fc6daa242d.tar.gz portable-15451aff6bb61c9a7c8552c84109f3fc6daa242d.tar.bz2 portable-15451aff6bb61c9a7c8552c84109f3fc6daa242d.zip |
ex_data is now implemented in crypto_ex_data.c
-rw-r--r-- | crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | crypto/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 5ee20ff..7d4ff70 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -221,9 +221,9 @@ set( | |||
221 | ${CRYPTO_SRC} | 221 | ${CRYPTO_SRC} |
222 | cpt_err.c | 222 | cpt_err.c |
223 | cryptlib.c | 223 | cryptlib.c |
224 | crypto_ex_data.c | ||
224 | crypto_init.c | 225 | crypto_init.c |
225 | cversion.c | 226 | cversion.c |
226 | ex_data.c | ||
227 | malloc-wrapper.c | 227 | malloc-wrapper.c |
228 | mem_clr.c | 228 | mem_clr.c |
229 | mem_dbg.c | 229 | mem_dbg.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 6e1e975..cb463fb 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -203,6 +203,7 @@ endif | |||
203 | 203 | ||
204 | libcrypto_la_SOURCES += cpt_err.c | 204 | libcrypto_la_SOURCES += cpt_err.c |
205 | libcrypto_la_SOURCES += cryptlib.c | 205 | libcrypto_la_SOURCES += cryptlib.c |
206 | libcrypto_la_SOURCES += crypto_ex_data.c | ||
206 | libcrypto_la_SOURCES += crypto_init.c | 207 | libcrypto_la_SOURCES += crypto_init.c |
207 | if !HOST_WIN | 208 | if !HOST_WIN |
208 | libcrypto_la_SOURCES += crypto_lock.c | 209 | libcrypto_la_SOURCES += crypto_lock.c |
@@ -210,7 +211,6 @@ else | |||
210 | libcrypto_la_SOURCES += compat/crypto_lock_win.c | 211 | libcrypto_la_SOURCES += compat/crypto_lock_win.c |
211 | endif | 212 | endif |
212 | libcrypto_la_SOURCES += cversion.c | 213 | libcrypto_la_SOURCES += cversion.c |
213 | libcrypto_la_SOURCES += ex_data.c | ||
214 | libcrypto_la_SOURCES += malloc-wrapper.c | 214 | libcrypto_la_SOURCES += malloc-wrapper.c |
215 | libcrypto_la_SOURCES += mem_clr.c | 215 | libcrypto_la_SOURCES += mem_clr.c |
216 | libcrypto_la_SOURCES += mem_dbg.c | 216 | libcrypto_la_SOURCES += mem_dbg.c |