Browse Source

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
reviewable/pr6407/r1
Anthony Bilinski 4 years ago
parent
commit
12ac833254
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      appimage/build.sh

2
appimage/build.sh

@ -170,6 +170,8 @@ libs=( @@ -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

Loading…
Cancel
Save