-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4007 from sysown/v2.x-openssl_3.0.7
update to openssl 3.0.7
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
openssl-3.0.5 | ||
openssl-openssl-3.0.7 |
Binary file renamed
BIN
+14.4 MB
deps/libssl/openssl-3.0.5.tar.gz → deps/libssl/openssl-3.0.7.tar.gz
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# make sure we have correct cwd | ||
pushd $(dirname $0) &>/dev/null | ||
trap 'popd &>/dev/null' EXIT | ||
|
||
echo "extracting 'struct bio_st' from './deps/libssl/openssl/crypto/bio/bio_local.h'" | ||
DEPBIOST=$(cd ../../; cat ./deps/libssl/openssl/crypto/bio/bio_local.h | sed -n '/^struct bio_st {/,/}/p') | ||
|
||
echo "extracting 'struct bio_st' from './lib/mysql_data_stream.cpp'" | ||
LIBBIOST=$(cd ../../; cat ./lib/mysql_data_stream.cpp | sed '/^\/\*/,/*\//d' | sed -n '/^struct bio_st {/,/}/p') | ||
|
||
echo -n "Comparing ... " | ||
if [[ "$LIBBIOST" == "$DEPBIOST" ]]; then | ||
echo "PASS - bio_st is a match!"; | ||
else | ||
echo "FAIL - bio_st does not match!"; | ||
exit 1 | ||
fi |