mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(appimage): Include additional needed glib for RH based distros
Add old glib to work with our old gnutls on redhat based systems. Generally we would want to avoid providing our old libs that the distro's newer libs that we use depend on, which would include harfbuzz in this case for glib, but including harfbuzz breaks libfreetype on newer distros like arch. Other libs that we use from the system with dependencies that we provide include are libfreetype, libXdmcp, and libICE, but that is unchanged here. Fix #6339
This commit is contained in:
parent
cb8a095fd2
commit
12ac833254
|
@ -170,6 +170,8 @@ libs=(
|
||||||
/usr/lib/x86_64-linux-gnu/libcrypto.so
|
/usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||||
# Also bundle libjack.so* without which the AppImage does not work in Fedora Workstation
|
# Also bundle libjack.so* without which the AppImage does not work in Fedora Workstation
|
||||||
/usr/lib/x86_64-linux-gnu/libjack.so.0
|
/usr/lib/x86_64-linux-gnu/libjack.so.0
|
||||||
|
# And libglib needed by Red Hat and derivatives to work with our old gnutls
|
||||||
|
/lib/x86_64-linux-gnu/libglib-2.0.so.0
|
||||||
)
|
)
|
||||||
|
|
||||||
for lib in "${libs[@]}"; do
|
for lib in "${libs[@]}"; do
|
||||||
|
|
Loading…
Reference in New Issue
Block a user