Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 70c4bba

Browse files
authored
Update openssl to version 3.0.8 and fix depot tool version for webrtc (#1327)
1 parent 90c9a4a commit 70c4bba

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

scripts/installCommonDeps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ install_openssl(){
210210
fi
211211

212212
if [ -d $LIB_DIR ]; then
213-
local SSL_BASE_VERSION="1.1.1"
214-
local SSL_VERSION="1.1.1q"
213+
local SSL_BASE_VERSION="3.0"
214+
local SSL_VERSION="3.0.8"
215215
cd $LIB_DIR
216216
rm -f ./build/lib/libssl.*
217217
rm -f ./build/lib/libcrypto.*

scripts/installWebrtc.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ install_depot_tools(){
6363

6464
pushd $OWT_DIR >/dev/null
6565
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
66+
pushd depot_tools > /dev/null
67+
git checkout 53075227f31e38bf875dad98ec57d53076316d6f && \
68+
popd >/dev/null
6669
popd >/dev/null
6770
}
6871

@@ -85,7 +88,8 @@ download_and_build(){
8588
source /opt/rh/devtoolset-7/enable
8689
fi
8790

88-
export PATH="$PATH:$DEPOT_TOOLS"
91+
export PATH="$DEPOT_TOOLS:$PATH"
92+
export DEPOT_TOOLS_UPDATE=0
8993
gclient sync --no-history
9094
pushd src >/dev/null
9195
gn gen out --args="$GN_ARGS"

scripts/pack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,8 +462,8 @@ function isLibAllowed(libSrc) {
462462

463463
const whiteList = [
464464
'rtcadapter',
465-
'libssl.so.1.1',
466-
'libcrypto.so.1.1',
465+
'libssl.so.3',
466+
'libcrypto.so.3',
467467
'libnice',
468468
'libSvtHevcEnc',
469469
'libusrsctp',

0 commit comments

Comments
 (0)