Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Builder Robot
eepm
Commits
90209f1f
Commit
90209f1f
authored
Dec 25, 2025
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
play code: fallback to 1.106.3 if OpenSSL 3 or WebKit 4.1 not available
parent
be5b3e61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
code.sh
play.d/code.sh
+9
-4
No files found.
play.d/code.sh
View file @
90209f1f
...
@@ -9,10 +9,15 @@ URL="https://code.visualstudio.com/"
...
@@ -9,10 +9,15 @@ URL="https://code.visualstudio.com/"
.
$(
dirname
$0
)
/common.sh
.
$(
dirname
$0
)
/common.sh
# version 1.107+ requires OpenSSL 3 and WebKit2GTK 4.1
# override only checked version and latest version
if
[
"
$VERSION
"
=
"*"
]
||
[
"
$(
epm print compare version
"
$VERSION
"
1.107
)
"
!=
"-1"
]
;
then
if
[
-n
"
$CHECKED_VERSION
"
]
||
[
"
$VERSION
"
=
"*"
]
;
then
is_openssl_enough 3
||
fatal
"There is no needed OpenSSL 3 in the system."
if
!
is_openssl_enough 3
;
then
is_soname_present libwebkit2gtk-4.1.so.0
||
fatal
"There is no libwebkit2gtk-4.1 in the system."
VERSION
=
"1.106.3"
info
"There is no needed OpenSSL 3 in the system, we'll stick with the old version
$VERSION
"
elif
!
is_soname_present libwebkit2gtk-4.1.so.0
;
then
VERSION
=
"1.106.3"
info
"There is no libwebkit2gtk-4.1 in the system, we'll stick with the old version
$VERSION
"
fi
fi
fi
arch
=
"
$(
epm print info
-a
)
"
arch
=
"
$(
epm print info
-a
)
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment