summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2020-10-02 10:03:18 +0000
committertb <>2020-10-02 10:03:18 +0000
commit3901b6980ac5e0e53953f03413eefce95f09362b (patch)
treeebd805db207bfb798940979f2568e7b863b695db /src
parent0eaab161f0145b6efba4f72ad0c78f06b4cef1a9 (diff)
downloadopenbsd-3901b6980ac5e0e53953f03413eefce95f09362b.tar.gz
openbsd-3901b6980ac5e0e53953f03413eefce95f09362b.tar.bz2
openbsd-3901b6980ac5e0e53953f03413eefce95f09362b.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')
-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