aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2024-08-02 04:54:22 -0600
committerTheo Buehler <tb@openbsd.org>2024-08-02 04:54:22 -0600
commit15451aff6bb61c9a7c8552c84109f3fc6daa242d (patch)
tree08c783beae94cc08f60328013e8b17e824fbf9d1
parenta94f45b44d5e19f0d0f025594cb9a0aa9ac1e6a3 (diff)
downloadportable-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.txt2
-rw-r--r--crypto/Makefile.am2
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
204libcrypto_la_SOURCES += cpt_err.c 204libcrypto_la_SOURCES += cpt_err.c
205libcrypto_la_SOURCES += cryptlib.c 205libcrypto_la_SOURCES += cryptlib.c
206libcrypto_la_SOURCES += crypto_ex_data.c
206libcrypto_la_SOURCES += crypto_init.c 207libcrypto_la_SOURCES += crypto_init.c
207if !HOST_WIN 208if !HOST_WIN
208libcrypto_la_SOURCES += crypto_lock.c 209libcrypto_la_SOURCES += crypto_lock.c
@@ -210,7 +211,6 @@ else
210libcrypto_la_SOURCES += compat/crypto_lock_win.c 211libcrypto_la_SOURCES += compat/crypto_lock_win.c
211endif 212endif
212libcrypto_la_SOURCES += cversion.c 213libcrypto_la_SOURCES += cversion.c
213libcrypto_la_SOURCES += ex_data.c
214libcrypto_la_SOURCES += malloc-wrapper.c 214libcrypto_la_SOURCES += malloc-wrapper.c
215libcrypto_la_SOURCES += mem_clr.c 215libcrypto_la_SOURCES += mem_clr.c
216libcrypto_la_SOURCES += mem_dbg.c 216libcrypto_la_SOURCES += mem_dbg.c