summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-06-28 08:44:26 +0000
committertb <>2022-06-28 08:44:26 +0000
commit002a3be4126d63276d3ae87ae634a14e6f0efc5b (patch)
treee184f2c8e24f5c06335c1ae89b6c7e4e709050b5 /src
parentba39ae254ff27f13827fcce35f81a71e813440a1 (diff)
downloadopenbsd-002a3be4126d63276d3ae87ae634a14e6f0efc5b.tar.gz
openbsd-002a3be4126d63276d3ae87ae634a14e6f0efc5b.tar.bz2
openbsd-002a3be4126d63276d3ae87ae634a14e6f0efc5b.zip
Only asn1time needs to be static for now.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/asn1/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/asn1/Makefile b/src/regress/lib/libcrypto/asn1/Makefile
index d201cc1779..a92ca39e9a 100644
--- a/src/regress/lib/libcrypto/asn1/Makefile
+++ b/src/regress/lib/libcrypto/asn1/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.19 2022/06/28 08:41:17 beck Exp $ 1# $OpenBSD: Makefile,v 1.20 2022/06/28 08:44:26 tb Exp $
2 2
3PROGS = \ 3PROGS = \
4 asn1api \ 4 asn1api \
@@ -16,7 +16,6 @@ PROGS = \
16DPADD+= ${LIBCRYPTO} 16DPADD+= ${LIBCRYPTO}
17WARNINGS= Yes 17WARNINGS= Yes
18LDFLAGS+= -lcrypto 18LDFLAGS+= -lcrypto
19LDADD= ${CRYPTO_INT}
20CFLAGS+= -DLIBRESSL_INTERNAL 19CFLAGS+= -DLIBRESSL_INTERNAL
21CFLAGS+= -Wall -Wundef -Werror 20CFLAGS+= -Wall -Wundef -Werror
22CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1 21CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1
@@ -24,6 +23,9 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/bytestring
24 23
25LDADD_asn1basic = ${CRYPTO_INT} 24LDADD_asn1basic = ${CRYPTO_INT}
26 25
26# XXX needs to be static until symbols are exposed
27LDADD_asn1time = ${CRYPTO_INT}
28
27.for p in ${PROGS} 29.for p in ${PROGS}
28REGRESS_TARGETS += run-$p 30REGRESS_TARGETS += run-$p
29 31