From 7ee7be183364ceeaf8a3b8d097926d0258905172 Mon Sep 17 00:00:00 2001 From: Benitoite Date: Thu, 13 Jun 2019 02:14:37 -0700 Subject: [PATCH] macOS: Copy some libraries into the bundle for libexpat and libz --- tools/osx/macosx_bundle.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/osx/macosx_bundle.sh b/tools/osx/macosx_bundle.sh index e334122be..291fc8778 100644 --- a/tools/osx/macosx_bundle.sh +++ b/tools/osx/macosx_bundle.sh @@ -155,6 +155,12 @@ ditto {"${GTK_PREFIX}","${RESOURCES}"}/share/icons/Adwaita/index.theme # Copy libjpeg-turbo into the app bundle cp /opt/local/lib/libjpeg.62.dylib "${RESOURCES}/../Frameworks" +# Copy libexpat into the app bundle +cp /opt/local/lib/libexpat.1.dylib "${RESOURCES}/../Frameworks" + +# Copy libz into the app bundle +cp /opt/local/lib/libz.1.dylib "${RESOURCES}/../Frameworks" + # Copy libtiff into the app bundle cp /opt/local/lib/libtiff.5.dylib "${RESOURCES}/../Frameworks"