diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-12 09:02:35 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-12 09:02:35 +0000 |
commit | 64938d97bf20d91c3a70a8f27d3dee958ec1e865 (patch) | |
tree | a9b5c03e995fb095d64c103a10eda11f79fcf968 /regress/lib/libcrypto/ecdsa/Makefile | |
parent | 74110b0ea8417f5489fdbc39ab0e8b1bf5a9c23c (diff) |
Rework ecdsatest to build after the bump and link statically for now
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 0c2e26a85ed..5cd4c4c87e6 100644 --- a/regress/lib/libcrypto/ecdsa/Makefile +++ b/regress/lib/libcrypto/ecdsa/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ +# $OpenBSD: Makefile,v 1.4 2022/01/12 09:02:34 tb Exp $ PROG= ecdsatest -LDADD= -lcrypto +LDADD= ${CRYPTO_INT} # XXX link dynamically after bump DPADD= ${LIBCRYPTO} WARNINGS= Yes -CFLAGS+= -DLIBRESSL_INTERNAL -Werror +CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror .include <bsd.regress.mk> |