aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-06-21 02:31:32 -0600
committerTheo Buehler <tb@openbsd.org>2023-06-21 02:31:32 -0600
commitee0a1048b88dde6ba44b7b004c501e887daab395 (patch)
tree8bc6db0485a432327732872bd90170e70fccb637
parentd5204e5fe68aff449aa9464ef144c11ad9783b0b (diff)
downloadportable-ee0a1048b88dde6ba44b7b004c501e887daab395.tar.gz
portable-ee0a1048b88dde6ba44b7b004c501e887daab395.tar.bz2
portable-ee0a1048b88dde6ba44b7b004c501e887daab395.zip
Link bn_primitives.c to the 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 d94997e..0379899 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -363,6 +363,7 @@ set(
363 bn/bn_mont.c 363 bn/bn_mont.c
364 bn/bn_mul.c 364 bn/bn_mul.c
365 bn/bn_prime.c 365 bn/bn_prime.c
366 bn/bn_primitives.c
366 bn/bn_rand.c 367 bn/bn_rand.c
367 bn/bn_recp.c 368 bn/bn_recp.c
368 bn/bn_shift.c 369 bn/bn_shift.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 0c45863..dc244ef 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -365,6 +365,7 @@ libcrypto_la_SOURCES += bn/bn_mod_sqrt.c
365libcrypto_la_SOURCES += bn/bn_mont.c 365libcrypto_la_SOURCES += bn/bn_mont.c
366libcrypto_la_SOURCES += bn/bn_mul.c 366libcrypto_la_SOURCES += bn/bn_mul.c
367libcrypto_la_SOURCES += bn/bn_prime.c 367libcrypto_la_SOURCES += bn/bn_prime.c
368libcrypto_la_SOURCES += bn/bn_primitives.c
368libcrypto_la_SOURCES += bn/bn_rand.c 369libcrypto_la_SOURCES += bn/bn_rand.c
369libcrypto_la_SOURCES += bn/bn_recp.c 370libcrypto_la_SOURCES += bn/bn_recp.c
370libcrypto_la_SOURCES += bn/bn_shift.c 371libcrypto_la_SOURCES += bn/bn_shift.c