[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: emacs package
From: |
Ludovic Courtès |
Subject: |
Re: emacs package |
Date: |
Sun, 21 Sep 2014 15:28:34 +0200 |
User-agent: |
Gnus/5.130011 (Ma Gnus v0.11) Emacs/24.3 (gnu/linux) |
address@hidden (Ludovic Courtès) skribis:
> And commit 0a9e9a6 switches Emacs to GTK+ 3.
Mark noted that GTK+ 3 fails to build on mips, because Xorg fails to
build. Could you check whether the attached patch works around the
problem? (Feel free to apply if it does.)
Thanks,
Ludo’.
>From 9b85537591c1b859fb8bb5f155b200e56cdc42d5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <address@hidden>
Date: Sun, 21 Sep 2014 15:13:23 +0200
Subject: [PATCH] gnu: gtk+: Remove dependency on Xorg server on
mips64el-linux.
Reported by Mark H. Weaver.
* gnu/packages/gtk.scm (gtk+)[native-inputs]: Remove XORG-SERVER on
mips64el-linux.
---
gnu/packages/gtk.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 0a6499d..0cbd55d 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -404,7 +404,13 @@ application suites.")
("pkg-config" ,pkg-config)
("gobject-introspection" ,gobject-introspection)
("python-wrapper" ,python-wrapper)
- ("xorg-server" ,xorg-server)))
+
+ ;; FIXME: The Xorg server is needed to run the tests, but it currently
+ ;; fails to build on mips64el, so remove it in the meantime.
+ ,@(if (string=? (or (%current-target-system) (%current-system))
+ "mips64el-linux")
+ '()
+ `(("xorg-server" ,xorg-server)))))
(arguments
`(#:phases
(alist-replace
--
1.8.4
- Re: emacs package, (continued)
- Re: emacs package, Federico Beffa, 2014/09/20
- Re: emacs package, Ludovic Courtès, 2014/09/20
- Re: emacs package, Federico Beffa, 2014/09/20
- GSettings schemas, Ludovic Courtès, 2014/09/22
- Re: GSettings schemas, Mark H Weaver, 2014/09/23
- wrap-program, Ludovic Courtès, 2014/09/24
- Re: wrap-program, Federico Beffa, 2014/09/26
- Re: wrap-program, Federico Beffa, 2014/09/26
- Re: wrap-program, Ludovic Courtès, 2014/09/27
- Re: wrap-program, Federico Beffa, 2014/09/27
- Re: emacs package,
Ludovic Courtès <=
- Re: emacs package, Federico Beffa, 2014/09/21