diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-14 09:38:51 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-14 09:38:51 +0000 |
commit | 8c29c5d5dda83c53364ecadfa586895e353e662a (patch) | |
tree | 3dcb38fe8e1b8e5c9638b3b0d91a3b4134fc39e5 /regress/lib/libcrypto/ecdsa/Makefile | |
parent | 065e9ef98cbd35305d6b0d357540513911749fe2 (diff) |
Undo static linking and other workarounds that are no longer needed
after the bump
Diffstat (limited to 'regress/lib/libcrypto/ecdsa/Makefile')
-rw-r--r-- | regress/lib/libcrypto/ecdsa/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libcrypto/ecdsa/Makefile b/regress/lib/libcrypto/ecdsa/Makefile index 5cd4c4c87e6..11360dff75d 100644 --- a/regress/lib/libcrypto/ecdsa/Makefile +++ b/regress/lib/libcrypto/ecdsa/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 2022/01/12 09:02:34 tb Exp $ +# $OpenBSD: Makefile,v 1.5 2022/01/14 09:38:50 tb Exp $ PROG= ecdsatest -LDADD= ${CRYPTO_INT} # XXX link dynamically after bump +LDADD= -lcrypto DPADD= ${LIBCRYPTO} WARNINGS= Yes -CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror +CFLAGS+= -DLIBRESSL_INTERNAL -Werror .include <bsd.regress.mk> |