diff options
author | tb <> | 2022-01-12 09:11:48 +0000 |
---|---|---|
committer | tb <> | 2022-01-12 09:11:48 +0000 |
commit | 21c55d7a4beea4317ee0541cf743948831260260 (patch) | |
tree | a4e641db3c11933c2658b51abb03235c5b72124b /src | |
parent | 72287d6d67237aefee1abd80d8a69244763d8f2e (diff) | |
download | openbsd-21c55d7a4beea4317ee0541cf743948831260260.tar.gz openbsd-21c55d7a4beea4317ee0541cf743948831260260.tar.bz2 openbsd-21c55d7a4beea4317ee0541cf743948831260260.zip |
Only evp_pkey_check needs static linking
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/evp/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/evp/Makefile b/src/regress/lib/libcrypto/evp/Makefile index 89779ae22a..c4a5294e66 100644 --- a/src/regress/lib/libcrypto/evp/Makefile +++ b/src/regress/lib/libcrypto/evp/Makefile | |||
@@ -1,7 +1,7 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2022/01/11 19:20:36 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2022/01/12 09:11:48 tb Exp $ |
2 | 2 | ||
3 | PROGS= evptest evp_pkey_check | 3 | PROGS= evptest evp_pkey_check |
4 | LDADD= ${CRYPTO_INT} | 4 | LDADD= -lcrypto |
5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
7 | CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror |
@@ -9,6 +9,8 @@ CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror | |||
9 | REGRESS_TARGETS+= regress-evptest | 9 | REGRESS_TARGETS+= regress-evptest |
10 | REGRESS_TARGETS+= regress-evp_pkey_check | 10 | REGRESS_TARGETS+= regress-evp_pkey_check |
11 | 11 | ||
12 | LDADD_evp_pkey_check= ${CRYPTO_INT} # XXX remove after bump | ||
13 | |||
12 | regress-evptest: evptest | 14 | regress-evptest: evptest |
13 | ./evptest ${.CURDIR}/evptests.txt | 15 | ./evptest ${.CURDIR}/evptests.txt |
14 | 16 | ||