aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2025-05-31 03:35:33 -0600
committerTheo Buehler <tb@openbsd.org>2025-05-31 03:35:47 -0600
commit0a5a42dc5e69768a293fd4c4957cb406b2bcab1f (patch)
treedd8d67eb092617f89a5dc7baacd268696a996db7
parentadff7f6528bb7e9f47d6293799095f7a79dd6bf7 (diff)
downloadportable-0a5a42dc5e69768a293fd4c4957cb406b2bcab1f.tar.gz
portable-0a5a42dc5e69768a293fd4c4957cb406b2bcab1f.tar.bz2
portable-0a5a42dc5e69768a293fd4c4957cb406b2bcab1f.zip
link bn_add_sub.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 c059797..f0c9687 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -227,6 +227,7 @@ set(
227 bio/bss_null.c 227 bio/bss_null.c
228 bio/bss_sock.c 228 bio/bss_sock.c
229 bn/bn_add.c 229 bn/bn_add.c
230 bn/bn_add_sub.c
230 bn/bn_bpsw.c 231 bn/bn_bpsw.c
231 bn/bn_const.c 232 bn/bn_const.c
232 bn/bn_convert.c 233 bn/bn_convert.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index f4d8007..4833288 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -347,6 +347,7 @@ noinst_HEADERS += bio/bio_local.h
347 347
348# bn 348# bn
349libcrypto_la_SOURCES += bn/bn_add.c 349libcrypto_la_SOURCES += bn/bn_add.c
350libcrypto_la_SOURCES += bn/bn_add_sub.c
350libcrypto_la_SOURCES += bn/bn_bpsw.c 351libcrypto_la_SOURCES += bn/bn_bpsw.c
351libcrypto_la_SOURCES += bn/bn_const.c 352libcrypto_la_SOURCES += bn/bn_const.c
352libcrypto_la_SOURCES += bn/bn_convert.c 353libcrypto_la_SOURCES += bn/bn_convert.c