diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2022-06-28 08:41:18 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2022-06-28 08:41:18 +0000 |
commit | 2085807a4d4aaf82115f74635d8ffe8668291aa5 (patch) | |
tree | 29391f3c3b6dc309be54da7c00adb0e070e8ab5f /regress/lib/libcrypto | |
parent | 474c0dc6c01f5ba6482c1bbdd1266e87af3317da (diff) |
Make this regress test link staticly and use internal symbols
so that it works and compiles during the tb@ pre-bump shuffle(tm).
Diffstat (limited to 'regress/lib/libcrypto')
-rw-r--r-- | regress/lib/libcrypto/asn1/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/asn1/Makefile b/regress/lib/libcrypto/asn1/Makefile index 0d62226add8..d201cc17796 100644 --- a/regress/lib/libcrypto/asn1/Makefile +++ b/regress/lib/libcrypto/asn1/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2022/06/19 17:05:31 tb Exp $ +# $OpenBSD: Makefile,v 1.19 2022/06/28 08:41:17 beck Exp $ PROGS = \ asn1api \ @@ -16,6 +16,7 @@ PROGS = \ DPADD+= ${LIBCRYPTO} WARNINGS= Yes LDFLAGS+= -lcrypto +LDADD= ${CRYPTO_INT} CFLAGS+= -DLIBRESSL_INTERNAL CFLAGS+= -Wall -Wundef -Werror CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1 |