diff options
author | tb <> | 2022-06-28 08:44:26 +0000 |
---|---|---|
committer | tb <> | 2022-06-28 08:44:26 +0000 |
commit | 002a3be4126d63276d3ae87ae634a14e6f0efc5b (patch) | |
tree | e184f2c8e24f5c06335c1ae89b6c7e4e709050b5 /src | |
parent | ba39ae254ff27f13827fcce35f81a71e813440a1 (diff) | |
download | openbsd-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/Makefile | 6 |
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 | ||
3 | PROGS = \ | 3 | PROGS = \ |
4 | asn1api \ | 4 | asn1api \ |
@@ -16,7 +16,6 @@ PROGS = \ | |||
16 | DPADD+= ${LIBCRYPTO} | 16 | DPADD+= ${LIBCRYPTO} |
17 | WARNINGS= Yes | 17 | WARNINGS= Yes |
18 | LDFLAGS+= -lcrypto | 18 | LDFLAGS+= -lcrypto |
19 | LDADD= ${CRYPTO_INT} | ||
20 | CFLAGS+= -DLIBRESSL_INTERNAL | 19 | CFLAGS+= -DLIBRESSL_INTERNAL |
21 | CFLAGS+= -Wall -Wundef -Werror | 20 | CFLAGS+= -Wall -Wundef -Werror |
22 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1 | 21 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1 |
@@ -24,6 +23,9 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/bytestring | |||
24 | 23 | ||
25 | LDADD_asn1basic = ${CRYPTO_INT} | 24 | LDADD_asn1basic = ${CRYPTO_INT} |
26 | 25 | ||
26 | # XXX needs to be static until symbols are exposed | ||
27 | LDADD_asn1time = ${CRYPTO_INT} | ||
28 | |||
27 | .for p in ${PROGS} | 29 | .for p in ${PROGS} |
28 | REGRESS_TARGETS += run-$p | 30 | REGRESS_TARGETS += run-$p |
29 | 31 | ||