diff options
author | tb <> | 2020-10-02 10:03:18 +0000 |
---|---|---|
committer | tb <> | 2020-10-02 10:03:18 +0000 |
commit | 3901b6980ac5e0e53953f03413eefce95f09362b (patch) | |
tree | ebd805db207bfb798940979f2568e7b863b695db /src | |
parent | 0eaab161f0145b6efba4f72ad0c78f06b4cef1a9 (diff) | |
download | openbsd-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/Makefile | 8 |
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 | ||
3 | PROGS = verify | 3 | PROGS = verify |
4 | |||
5 | .ifdef EOPENSSL11 | ||
6 | LDADD += -Wl,-rpath,/usr/local/lib/eopenssl11 -L/usr/local/lib/eopenssl11 | ||
7 | CFLAGS += -I/usr/local/include/eopenssl11/ | ||
8 | .endif | ||
9 | |||
4 | LDADD += -lcrypto | 10 | LDADD += -lcrypto |
5 | DPADD += ${LIBCRYPTO} | 11 | DPADD += ${LIBCRYPTO} |
6 | WARNINGS ?= Yes | 12 | WARNINGS ?= Yes |