Summary: | Digikam-5.9.0 appimage fail to start | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | pascal lacroix <kikoucalou> |
Component: | Bundle-AppImage | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles, kde.bugs |
Priority: | NOR | ||
Version: | 5.9.0 | ||
Target Milestone: | --- | ||
Platform: | Appimage | ||
OS: | Linux | ||
Latest Commit: | https://commits.kde.org/digikam-software-compilation/69ad3e7e451ec32102b035a8a4f5a775be1e7927 | Version Fixed In: | 5.9.0 |
Sentry Crash Report: |
Description
pascal lacroix
2018-02-09 16:45:43 UTC
Some users report a missing OpenAL shared lib to include in the bundle. I suspect an init of the library at startup parsing audio hardware (Alsa layer here), and a problem to detect config file. GilleS Caulier ./digikam-5.9.0-20180209T014824-x86-64.appimage start properly here under Mageia6... Which Linux system do you use exactly ? Gilles Caulier My system is Linux Mint 18.3 "Sylvia", Cinnamon 64-bits Pascal LACROIX As you said, some users report a missing OpenAL shared lib to include in the bundle: I try with alsoft-conf and libopenal-dev installed and now, ./digikam-5.9.0-20180209T014824-x86-64.appimage start now properly on my system Pascal LACROIX Same error on Ubuntu 17.10 with digikam-5.9.0-20180209T014824-x86-64.appimage diff --git a/project/bundles/appimage/04-build-appimage.sh b/project/bundles/appimage/04-build-appimage.sh index 1f68358..402bcfd 100755 --- a/project/bundles/appimage/04-build-appimage.sh +++ b/project/bundles/appimage/04-build-appimage.sh @@ -300,7 +300,8 @@ rm -f usr/lib/libusb-1.0.so.0 || true rm -f usr/lib/libuuid.so.1 || true rm -f usr/lib/libwind.so.0 || true rm -f usr/lib/libfontconfig.so.* || true -#rm -f usr/lib/libopenal.so.1 || true +# Remove this library, else appimage cannot be started properly (Bug #390162) +rm -f usr/lib/libopenal.so.1 || true # Remove these libraries, we need to use the system versions; this means 11.04 is not supported (12.04 is our baseline) rm -f usr/lib/libGL.so.* || true Git commit 69ad3e7e451ec32102b035a8a4f5a775be1e7927 by Gilles Caulier. Committed on 21/02/2018 at 16:33. Pushed by cgilles into branch 'master'. remove openal from the bundle and use system lib instead. FIXED-IN: 5.9.0 M +2 -1 project/bundles/appimage/04-build-appimage.sh https://commits.kde.org/digikam-software-compilation/69ad3e7e451ec32102b035a8a4f5a775be1e7927 |