summaryrefslogtreecommitdiff
path: root/src/regress/lib
diff options
context:
space:
mode:
authortb <>2020-10-02 10:03:18 +0000
committertb <>2020-10-02 10:03:18 +0000
commit1e6631e64ad0c7d8e96441fe5ec6a0440f5c6ec6 (patch)
treeebd805db207bfb798940979f2568e7b863b695db /src/regress/lib
parentf3ccb75529881f30f1ad249c270f5f443636cb93 (diff)
downloadopenbsd-1e6631e64ad0c7d8e96441fe5ec6a0440f5c6ec6.tar.gz
openbsd-1e6631e64ad0c7d8e96441fe5ec6a0440f5c6ec6.tar.bz2
openbsd-1e6631e64ad0c7d8e96441fe5ec6a0440f5c6ec6.zip
Add possibility to link and run this test against the OpenSSL 1.1.1 package
using the make variable EOPENSSL11. Suggested by jsing
Diffstat (limited to 'src/regress/lib')
-rw-r--r--src/regress/lib/libcrypto/x509/bettertls/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/x509/bettertls/Makefile b/src/regress/lib/libcrypto/x509/bettertls/Makefile
index 778e06464a..9b6efabbf7 100644
--- a/src/regress/lib/libcrypto/x509/bettertls/Makefile
+++ b/src/regress/lib/libcrypto/x509/bettertls/Makefile
@@ -1,6 +1,12 @@
1# $OpenBSD: Makefile,v 1.3 2020/10/02 08:11:49 tb Exp $ 1# $OpenBSD: Makefile,v 1.4 2020/10/02 10:03:18 tb Exp $
2 2
3PROGS = verify 3PROGS = verify
4
5.ifdef EOPENSSL11
6LDADD += -Wl,-rpath,/usr/local/lib/eopenssl11 -L/usr/local/lib/eopenssl11
7CFLAGS += -I/usr/local/include/eopenssl11/
8.endif
9
4LDADD += -lcrypto 10LDADD += -lcrypto
5DPADD += ${LIBCRYPTO} 11DPADD += ${LIBCRYPTO}
6WARNINGS ?= Yes 12WARNINGS ?= Yes