diff options
author | anton <> | 2025-06-23 07:22:32 +0000 |
---|---|---|
committer | anton <> | 2025-06-23 07:22:32 +0000 |
commit | 83500bc783d0e20994f0f3af9a1bb14a87930fe7 (patch) | |
tree | 677908812c65507c4edcad94b8953de24b44d6ca /src | |
parent | 00fc9ceec0393e897bffa9c4fc4a10b1c178d2e7 (diff) | |
download | openbsd-83500bc783d0e20994f0f3af9a1bb14a87930fe7.tar.gz openbsd-83500bc783d0e20994f0f3af9a1bb14a87930fe7.tar.bz2 openbsd-83500bc783d0e20994f0f3af9a1bb14a87930fe7.zip |
OpenSSL is linked against pthread by now; ok tb@
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/interop/openssl33/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/interop/openssl33/Makefile b/src/regress/lib/libssl/interop/openssl33/Makefile index eff61704d0..e82d75c001 100644 --- a/src/regress/lib/libssl/interop/openssl33/Makefile +++ b/src/regress/lib/libssl/interop/openssl33/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2025/01/15 10:54:17 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2025/06/23 07:22:32 anton Exp $ |
2 | 2 | ||
3 | .if ! exists(/usr/local/bin/eopenssl33) | 3 | .if ! exists(/usr/local/bin/eopenssl33) |
4 | regress: | 4 | regress: |
@@ -27,7 +27,7 @@ run-ldd-$p: ldd-$p.out | |||
27 | grep -q /usr/local/lib/eopenssl33/libcrypto.so ldd-$p.out | 27 | grep -q /usr/local/lib/eopenssl33/libcrypto.so ldd-$p.out |
28 | grep -q /usr/local/lib/eopenssl33/libssl.so ldd-$p.out | 28 | grep -q /usr/local/lib/eopenssl33/libssl.so ldd-$p.out |
29 | # check that $p is not linked with LibreSSL | 29 | # check that $p is not linked with LibreSSL |
30 | ! grep -v libc.so ldd-$p.out | grep /usr/lib/ | 30 | ! grep -v -e libc.so -e libpthread.so ldd-$p.out | grep /usr/lib/ |
31 | 31 | ||
32 | run-version-$p: $p-self.out | 32 | run-version-$p: $p-self.out |
33 | # check that runtime version is OpenSSL 3.3 | 33 | # check that runtime version is OpenSSL 3.3 |