summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-04-10 13:57:57 +0000
committertb <>2023-04-10 13:57:57 +0000
commitb69dbf2c57956e07d5446387867f5b0443ebb5ab (patch)
tree5b3d57b3e601604e86350ef7e1e9bc319410b756
parent66736692539ed128ee5e2bf3bb1b2b8a93a138b7 (diff)
downloadopenbsd-b69dbf2c57956e07d5446387867f5b0443ebb5ab.tar.gz
openbsd-b69dbf2c57956e07d5446387867f5b0443ebb5ab.tar.bz2
openbsd-b69dbf2c57956e07d5446387867f5b0443ebb5ab.zip
bn_to_string no longer needs to be linked statically
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile
index 3e51cf84e5..71909edc61 100644
--- a/src/regress/lib/libcrypto/bn/Makefile
+++ b/src/regress/lib/libcrypto/bn/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.27 2023/04/03 21:33:16 tb Exp $ 1# $OpenBSD: Makefile,v 1.28 2023/04/10 13:57:57 tb Exp $
2 2
3PROGS += bn_add_sub 3PROGS += bn_add_sub
4PROGS += bn_cmp 4PROGS += bn_cmp
@@ -21,7 +21,6 @@ STATIC_LINK += bn_isqrt
21STATIC_LINK += bn_mod_exp 21STATIC_LINK += bn_mod_exp
22STATIC_LINK += bn_rand_interval 22STATIC_LINK += bn_rand_interval
23STATIC_LINK += bn_test 23STATIC_LINK += bn_test
24STATIC_LINK += bn_to_string
25 24
26LDADD = -lcrypto 25LDADD = -lcrypto
27DPADD = ${LIBCRYPTO} 26DPADD = ${LIBCRYPTO}