1
0
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:
Anthony Bilinski 2021-10-27 17:51:18 -07:00
parent cb8a095fd2
commit 12ac833254
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -170,6 +170,8 @@ libs=(
/usr/lib/x86_64-linux-gnu/libcrypto.so
# Also bundle libjack.so* without which the AppImage does not work in Fedora Workstation
/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