From d1834515ee84738b94a65893567bc23c4480a3b9 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 28 Jun 2022 08:44:26 +0000 Subject: [PATCH] Only asn1time needs to be static for now. --- regress/lib/libcrypto/asn1/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/regress/lib/libcrypto/asn1/Makefile b/regress/lib/libcrypto/asn1/Makefile index d201cc17796..a92ca39e9aa 100644 --- a/regress/lib/libcrypto/asn1/Makefile +++ b/regress/lib/libcrypto/asn1/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2022/06/28 08:41:17 beck Exp $ +# $OpenBSD: Makefile,v 1.20 2022/06/28 08:44:26 tb Exp $ PROGS = \ asn1api \ @@ -16,7 +16,6 @@ PROGS = \ DPADD+= ${LIBCRYPTO} WARNINGS= Yes LDFLAGS+= -lcrypto -LDADD= ${CRYPTO_INT} CFLAGS+= -DLIBRESSL_INTERNAL CFLAGS+= -Wall -Wundef -Werror CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1 @@ -24,6 +23,9 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/bytestring LDADD_asn1basic = ${CRYPTO_INT} +# XXX needs to be static until symbols are exposed +LDADD_asn1time = ${CRYPTO_INT} + .for p in ${PROGS} REGRESS_TARGETS += run-$p -- 2.20.1