diff options
author | tb <> | 2022-01-12 08:56:49 +0000 |
---|---|---|
committer | tb <> | 2022-01-12 08:56:49 +0000 |
commit | 3870a5442b5b0bcbec330186e81c5697e7c37c64 (patch) | |
tree | 5487e5181d1199ac4e6963a05f8e8b1750a22c0f /src | |
parent | 6e9abbc89c0864db2158ab63b540247e5853b8e6 (diff) | |
download | openbsd-3870a5442b5b0bcbec330186e81c5697e7c37c64.tar.gz openbsd-3870a5442b5b0bcbec330186e81c5697e7c37c64.tar.bz2 openbsd-3870a5442b5b0bcbec330186e81c5697e7c37c64.zip |
Rework dhtest to use accessors and link statically for now
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/dh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/dh/Makefile b/src/regress/lib/libcrypto/dh/Makefile index 3eaacc4296..d8f7a51c7f 100644 --- a/src/regress/lib/libcrypto/dh/Makefile +++ b/src/regress/lib/libcrypto/dh/Makefile | |||
@@ -1,9 +1,9 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2022/01/12 08:56:49 tb Exp $ |
2 | 2 | ||
3 | PROG= dhtest | 3 | PROG= dhtest |
4 | LDADD= -lcrypto | 4 | LDADD= ${CRYPTO_INT} # XXX link dynamically after bump |
5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
7 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror |
8 | 8 | ||
9 | .include <bsd.regress.mk> | 9 | .include <bsd.regress.mk> |