slackware-current/source/l/gegl/gegl.no.runtime.dot.check.diff
Patrick J Volkerding 4c1d731fca Mon Dec 21 22:23:10 UTC 2020
a/kernel-generic-5.10.2-x86_64-1.txz:  Upgraded.
a/kernel-huge-5.10.2-x86_64-1.txz:  Upgraded.
a/kernel-modules-5.10.2-x86_64-1.txz:  Upgraded.
d/kernel-headers-5.10.2-x86-1.txz:  Upgraded.
d/parallel-20201222-noarch-1.txz:  Upgraded.
d/python-setuptools-51.1.0-x86_64-1.txz:  Upgraded.
k/kernel-source-5.10.2-noarch-1.txz:  Upgraded.
  -USB_SISUSBVGA_CON y
   PCIE_BW y -> n
  Thanks to walecha.
l/gegl-0.4.28-x86_64-2.txz:  Rebuilt.
  Make sure gegl:introspect is available or GIMP won't start.
n/gnupg2-2.2.26-x86_64-1.txz:  Upgraded.
n/iproute2-5.10.0-x86_64-1.txz:  Upgraded.
n/ipset-7.10-x86_64-1.txz:  Upgraded.
x/liberation-fonts-ttf-2.1.2-noarch-1.txz:  Upgraded.
xfce/xfce4-systemload-plugin-1.2.4-x86_64-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2020-12-22 08:59:52 +01:00

26 lines
704 B
Diff

--- ./operations/common/introspect.c.orig 2020-12-20 06:16:48.799965900 -0600
+++ ./operations/common/introspect.c 2020-12-21 15:41:14.459774463 -0600
@@ -48,7 +48,7 @@
dot = g_find_program_in_path ("dot");
- if (! dot || op_introspect->user_data || op_introspect->node == NULL)
+ if (op_introspect->user_data || op_introspect->node == NULL)
return;
/* Construct temp filenames */
@@ -175,12 +175,9 @@
gegl_introspect_is_available (void)
{
gchar *dot;
- gboolean found = FALSE;
-
- dot = g_find_program_in_path ("dot");
- found = (dot != NULL);
- g_free (dot);
+ gboolean found = TRUE;
+ /* always return TRUE to avoid a runtime check on dot */
return found;
}