unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: qt: Fix for i686.
@ 2015-04-29 15:13 Taylan Ulrich Bayırlı/Kammer
  2015-04-30 15:39 ` Taylan Ulrich Bayırlı/Kammer
  2015-04-30 22:25 ` Ludovic Courtès
  0 siblings, 2 replies; 6+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-04-29 15:13 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 41 bytes --]

This is really hacky but seems to work.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0004-gnu-qt-Fix-for-i686.patch --]
[-- Type: text/x-diff, Size: 2442 bytes --]

From 35fdd9e2fcd5b953b3a088d0bb22d84f7dc5ded9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
 <taylanbayirli@gmail.com>
Date: Fri, 24 Apr 2015 10:43:57 +0200
Subject: [PATCH 4/4] gnu: qt: Fix for i686.

See <https://bugreports.qt.io/browse/QTBUG-45205>.

* gnu/packages/qt.scm (qt): Copy mesa's GL headers to a temporary directory,
  patching them for Qt.
---
 gnu/packages/qt.scm | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 8de1ffe..0f4282d 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -166,8 +166,29 @@ webrtc/tools/e2e_quality/audio/perf")))))
      `(#:phases
          (alist-replace
           'configure
-          (lambda* (#:key outputs #:allow-other-keys)
-            (let ((out (assoc-ref outputs "out")))
+          (lambda* (#:key inputs outputs #:allow-other-keys)
+            ;; Mesa headers need monkey-patching for Qt.  See:
+            ;; https://bugreports.qt.io/browse/QTBUG-45205
+            (let* ((out (assoc-ref outputs "out"))
+                   (mesa (assoc-ref inputs "mesa"))
+                   (mesa-include (string-append mesa "/include"))
+                   (mesa-pkgconfig (string-append mesa "/lib/pkgconfig"))
+                   (mesa* (tmpnam))
+                   (mesa*-include (string-append mesa* "/include"))
+                   (mesa*-pkgconfig (string-append mesa* "/lib/pkgconfig")))
+              (copy-recursively mesa-include mesa*-include)
+              (substitute* (string-append mesa*-include "/GL/glext.h")
+                (("typedef ptrdiff_t GLsizeiptr;" all)
+                 (string-append "#ifndef BUILDING_CHROMIUM\n" all))
+                (("typedef ptrdiff_t GLintptr;" all)
+                 (string-append all "\n#endif")))
+              (copy-recursively mesa-pkgconfig mesa*-pkgconfig)
+              (substitute* (find-files mesa*-pkgconfig "\\.pc$")
+                (("includedir=.*")
+                 (string-append "includedir=" mesa*-include "\n")))
+              (setenv "PKG_CONFIG_PATH"
+                      (string-append mesa*-pkgconfig ":"
+                                     (getenv "PKG_CONFIG_PATH")))
               (substitute* '("configure" "qtbase/configure")
                 (("/bin/pwd") (which "pwd")))
               (substitute* "qtbase/src/corelib/global/global.pri"
-- 
2.2.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-05-01  7:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-29 15:13 [PATCH] gnu: qt: Fix for i686 Taylan Ulrich Bayırlı/Kammer
2015-04-30 15:39 ` Taylan Ulrich Bayırlı/Kammer
2015-04-30 15:43   ` Andreas Enge
2015-05-01  6:26   ` Taylan Ulrich Bayırlı/Kammer
2015-04-30 22:25 ` Ludovic Courtès
2015-05-01  7:15   ` Taylan Ulrich Bayırlı/Kammer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).