diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-10 13:57:58 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-10 13:57:58 +0000 |
commit | 07ef2841336961f60d2cf5487ade1b8cd460fd9b (patch) | |
tree | 0b981160d6ddab964f7855e51067cfe6c2d9b124 /regress | |
parent | d6abb15188ef5315c3900169b96dcd5a415dba7c (diff) |
bn_to_string no longer needs to be linked statically
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libcrypto/bn/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/bn/Makefile b/regress/lib/libcrypto/bn/Makefile index 3e51cf84e51..71909edc61e 100644 --- a/regress/lib/libcrypto/bn/Makefile +++ b/regress/lib/libcrypto/bn/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.27 2023/04/03 21:33:16 tb Exp $ +# $OpenBSD: Makefile,v 1.28 2023/04/10 13:57:57 tb Exp $ PROGS += bn_add_sub PROGS += bn_cmp @@ -21,7 +21,6 @@ STATIC_LINK += bn_isqrt STATIC_LINK += bn_mod_exp STATIC_LINK += bn_rand_interval STATIC_LINK += bn_test -STATIC_LINK += bn_to_string LDADD = -lcrypto DPADD = ${LIBCRYPTO} |