diff options
author | tb <> | 2024-12-27 08:02:27 +0000 |
---|---|---|
committer | tb <> | 2024-12-27 08:02:27 +0000 |
commit | 86c0d46be604d62690c3b5215670850cbd8f8a57 (patch) | |
tree | 2070f1a21a3c2b279dd4777725a84d4bb2078a6d | |
parent | ebda9abb68eb926f45d2aa1487bf8bc7bde24dcb (diff) | |
download | openbsd-86c0d46be604d62690c3b5215670850cbd8f8a57.tar.gz openbsd-86c0d46be604d62690c3b5215670850cbd8f8a57.tar.bz2 openbsd-86c0d46be604d62690c3b5215670850cbd8f8a57.zip |
OpenSSL 1.1 is dead. Make this optionally use 3.3 instead.
-rw-r--r-- | src/regress/lib/libcrypto/x509/bettertls/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/x509/bettertls/Makefile b/src/regress/lib/libcrypto/x509/bettertls/Makefile index 6d694f2e1c..2724140635 100644 --- a/src/regress/lib/libcrypto/x509/bettertls/Makefile +++ b/src/regress/lib/libcrypto/x509/bettertls/Makefile | |||
@@ -1,10 +1,10 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2020/10/02 19:38:39 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2024/12/27 08:02:27 tb Exp $ |
2 | 2 | ||
3 | PROGS = verify | 3 | PROGS = verify |
4 | 4 | ||
5 | .ifdef EOPENSSL11 | 5 | .ifdef EOPENSSL33 |
6 | LDADD += -Wl,-rpath,/usr/local/lib/eopenssl11 -L/usr/local/lib/eopenssl11 | 6 | LDADD += -Wl,-rpath,/usr/local/lib/eopenssl33 -L/usr/local/lib/eopenssl33 |
7 | CFLAGS += -I/usr/local/include/eopenssl11/ | 7 | CFLAGS += -I/usr/local/include/eopenssl33/ |
8 | .endif | 8 | .endif |
9 | 9 | ||
10 | LDADD += -lcrypto | 10 | LDADD += -lcrypto |