[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: gdk-pixbuf: Build with other loaders enabled.
From: |
guix-commits |
Subject: |
02/02: gnu: gdk-pixbuf: Build with other loaders enabled. |
Date: |
Tue, 24 Dec 2024 03:53:02 -0500 (EST) |
lilyp pushed a commit to branch gnome-team
in repository guix.
commit be3292f83a77d2b388a5fff36f2b7b4d4c6dc1a9
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Tue Dec 24 09:51:39 2024 +0100
gnu: gdk-pixbuf: Build with other loaders enabled.
GTK+ 3 currently fails to build, as it requires the XPM loader be enabled.
See also <https://gitlab.gnome.org/GNOME/gtk/-/issues/7143>.
* gnu/packages/gtk.scm (gdk-pixbuf)[#:configure-flags]: Add
“-Dothers=enabled”.
---
gnu/packages/gtk.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 80749175e9..6fbdb60409 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -734,7 +734,10 @@ highlighting and other features typical of a source code
editor.")
#:configure-flags '("-Dinstalled_tests=false"
,@(if (%current-target-system)
'()
- '("-Dgtk_doc=true")))
+ '("-Dgtk_doc=true"))
+ ;; GTK+ 3 needs the XPM loader, see
+ ;;
<https://gitlab.gnome.org/GNOME/gtk/-/issues/7143>.
+ "-Dothers=enabled")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'disable-failing-tests