summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-01-12 09:11:48 +0000
committertb <>2022-01-12 09:11:48 +0000
commit21c55d7a4beea4317ee0541cf743948831260260 (patch)
treea4e641db3c11933c2658b51abb03235c5b72124b /src
parent72287d6d67237aefee1abd80d8a69244763d8f2e (diff)
downloadopenbsd-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/Makefile6
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
3PROGS= evptest evp_pkey_check 3PROGS= evptest evp_pkey_check
4LDADD= ${CRYPTO_INT} 4LDADD= -lcrypto
5DPADD= ${LIBCRYPTO} 5DPADD= ${LIBCRYPTO}
6WARNINGS= Yes 6WARNINGS= Yes
7CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror 7CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror
@@ -9,6 +9,8 @@ CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror
9REGRESS_TARGETS+= regress-evptest 9REGRESS_TARGETS+= regress-evptest
10REGRESS_TARGETS+= regress-evp_pkey_check 10REGRESS_TARGETS+= regress-evp_pkey_check
11 11
12LDADD_evp_pkey_check= ${CRYPTO_INT} # XXX remove after bump
13
12regress-evptest: evptest 14regress-evptest: evptest
13 ./evptest ${.CURDIR}/evptests.txt 15 ./evptest ${.CURDIR}/evptests.txt
14 16