From f084b635d171a395faab55df21c83d00cd52f5c4 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 9 Sep 2020 08:41:21 +0200 Subject: [PATCH] gimp: Disable update check on startup By default, GIMP checks for updates. Currently, this does not work (in our environment) resulting in the error below [1]. $ gimp gimp_check_updates_callback: loading of https://gimp.org/gimp_versions.json failed: Peer failed to perform TLS handshake So, configure the build to disable the check. --disable-check-update GIMP will not look up new version availability on startup [1]: https://gitlab.gnome.org/GNOME/gimp/-/issues/5622 --- gimp.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/gimp.be0 b/gimp.be0 index 8d65f0dc1..854d91cf9 100755 --- a/gimp.be0 +++ b/gimp.be0 @@ -25,6 +25,7 @@ SRCURL[0]="https://download.gimp.org/mirror/pub/gimp/v${PKGVERSION[2]}/gimp-${PK mee_configure() { bee_configure \ + --disable-check-update \ --disable-python }