[openssl] openssl-3.0 update
Matt Caswell
matt at openssl.org
Thu Dec 30 16:52:36 UTC 2021
The branch openssl-3.0 has been updated
via 824b0d56e757f4a5c0f8af48add768db33d8ce51 (commit)
from 5713edd873e87a620fbb8be90c7bc1a51fa43c5c (commit)
- Log -----------------------------------------------------------------
commit 824b0d56e757f4a5c0f8af48add768db33d8ce51
Author: Matt Caswell <matt at openssl.org>
Date: Wed Dec 29 14:44:00 2021 +0000
Fix the symbol_presence test with a shlib_variant
If a shlib_variant is used then the dynamic version information for
symbols will be different from what the symbol presence test was
expecting. We just make it more liberal about what it accepts as dynamic
version information.
Fixes #17366
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17372)
(cherry picked from commit 805bdac5f37bb820658f70269941086bef6c085b)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/01-test_symbol_presence.t | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index efe0760c25..5530ade0ad 100644
--- a/test/recipes/01-test_symbol_presence.t
+++ b/test/recipes/01-test_symbol_presence.t
@@ -76,7 +76,7 @@ foreach my $libname (@libnames) {
# Drop the first space and everything following it
s| .*||;
# Drop OpenSSL dynamic version information if there is any
- s|\@\@OPENSSL_[0-9._]+[a-z]?$||;
+ s|\@\@.+$||;
# Return the result
$_
}
More information about the openssl-commits
mailing list