diff options
Diffstat (limited to 'src/regress/lib/libssl/interop/version/Makefile')
-rw-r--r-- | src/regress/lib/libssl/interop/version/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/regress/lib/libssl/interop/version/Makefile b/src/regress/lib/libssl/interop/version/Makefile index aa5883fa2d..605fba252f 100644 --- a/src/regress/lib/libssl/interop/version/Makefile +++ b/src/regress/lib/libssl/interop/version/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.9 2024/08/18 10:02:10 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.10 2025/01/15 10:54:17 tb Exp $ |
2 | 2 | ||
3 | # Connect a client to a server. Both can be current libressl, or | 3 | # Connect a client to a server. Both can be current libressl, or |
4 | # openssl 1.1 or openssl 3.0. Pin client or server to a fixed TLS | 4 | # openssl 1.1 or openssl 3.0. Pin client or server to a fixed TLS |
@@ -7,11 +7,11 @@ | |||
7 | # print out. | 7 | # print out. |
8 | 8 | ||
9 | LIBRARIES = libressl | 9 | LIBRARIES = libressl |
10 | .if exists(/usr/local/bin/eopenssl11) | 10 | .if exists(/usr/local/bin/eopenssl33) |
11 | LIBRARIES += openssl11 | 11 | LIBRARIES += openssl33 |
12 | .endif | 12 | .endif |
13 | .if exists(/usr/local/bin/eopenssl31) | 13 | .if exists(/usr/local/bin/eopenssl34) |
14 | LIBRARIES += openssl31 | 14 | LIBRARIES += openssl34 |
15 | .endif | 15 | .endif |
16 | 16 | ||
17 | VERSIONS = any TLS1_2 TLS1_3 | 17 | VERSIONS = any TLS1_2 TLS1_3 |
@@ -29,7 +29,8 @@ FAIL_${cver}_${sver} = ! | |||
29 | .for slib in ${LIBRARIES} | 29 | .for slib in ${LIBRARIES} |
30 | 30 | ||
31 | .if ("${cver}" != TLS1_3 && "${sver}" != TLS1_3) && \ | 31 | .if ("${cver}" != TLS1_3 && "${sver}" != TLS1_3) && \ |
32 | ((("${clib}" != openssl31 && "${slib}" != openssl31)) || \ | 32 | ((("${clib}" != openssl33 && "${slib}" != openssl33)) || \ |
33 | (("${clib}" != openssl34 && "${slib}" != openssl34)) || \ | ||
33 | (("${cver}" != any && "${sver}" != any) && \ | 34 | (("${cver}" != any && "${sver}" != any) && \ |
34 | ("${cver}" != TLS1 && "${sver}" != TLS1) && \ | 35 | ("${cver}" != TLS1 && "${sver}" != TLS1) && \ |
35 | ("${cver}" != TLS1_1 && "${sver}" != TLS1_1))) | 36 | ("${cver}" != TLS1_1 && "${sver}" != TLS1_1))) |