aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2025-05-31 04:03:31 -0600
committerTheo Buehler <tb@openbsd.org>2025-05-31 04:03:40 -0600
commite1866b0fc66383cd5f79e1d6a896c23f47cff239 (patch)
tree328dc6dc4fcfc97e6faf0e4d4b43368ccf6199ed
parent0a5a42dc5e69768a293fd4c4957cb406b2bcab1f (diff)
downloadportable-e1866b0fc66383cd5f79e1d6a896c23f47cff239.tar.gz
portable-e1866b0fc66383cd5f79e1d6a896c23f47cff239.tar.bz2
portable-e1866b0fc66383cd5f79e1d6a896c23f47cff239.zip
link bn_mod_words.c to build
-rw-r--r--crypto/CMakeLists.txt1
-rw-r--r--crypto/Makefile.am1
2 files changed, 2 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index f0c9687..ac29272 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -241,6 +241,7 @@ set(
241 bn/bn_lib.c 241 bn/bn_lib.c
242 bn/bn_mod.c 242 bn/bn_mod.c
243 bn/bn_mod_sqrt.c 243 bn/bn_mod_sqrt.c
244 bn/bn_mod_words.c
244 bn/bn_mont.c 245 bn/bn_mont.c
245 bn/bn_mul.c 246 bn/bn_mul.c
246 bn/bn_prime.c 247 bn/bn_prime.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 4833288..5a3f496 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -361,6 +361,7 @@ libcrypto_la_SOURCES += bn/bn_kron.c
361libcrypto_la_SOURCES += bn/bn_lib.c 361libcrypto_la_SOURCES += bn/bn_lib.c
362libcrypto_la_SOURCES += bn/bn_mod.c 362libcrypto_la_SOURCES += bn/bn_mod.c
363libcrypto_la_SOURCES += bn/bn_mod_sqrt.c 363libcrypto_la_SOURCES += bn/bn_mod_sqrt.c
364libcrypto_la_SOURCES += bn/bn_mod_words.c
364libcrypto_la_SOURCES += bn/bn_mont.c 365libcrypto_la_SOURCES += bn/bn_mont.c
365libcrypto_la_SOURCES += bn/bn_mul.c 366libcrypto_la_SOURCES += bn/bn_mul.c
366libcrypto_la_SOURCES += bn/bn_prime.c 367libcrypto_la_SOURCES += bn/bn_prime.c