guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: mesa: Fix build on non-intel systems.


From: Mark H. Weaver
Subject: 01/01: gnu: mesa: Fix build on non-intel systems.
Date: Thu, 01 Jan 2015 07:30:48 +0000

mhw pushed a commit to branch master
in repository guix.

commit 0f481f0616ee3688d616ce49f2973a1ca958d73f
Author: Mark H Weaver <address@hidden>
Date:   Thu Jan 1 01:55:37 2015 -0500

    gnu: mesa: Fix build on non-intel systems.
    
    * gnu/packages/gl.scm (mesa): On non-intel systems, pass
      "--with-dri-drivers=" configure flag with i915 and i965 removed.
---
 gnu/packages/gl.scm |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 791b413..aa90c7e 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -20,6 +20,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages gl)
+  #:use-module (ice-9 match)
   #:use-module ((guix licenses) #:prefix l:)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -161,9 +162,17 @@ Polygon meshes, and Extruded polygon meshes")
         ("python" ,python-2))) ; incompatible with Python 3 (print syntax)
     (arguments
      `(#:configure-flags
-       `(;; drop r300 from default gallium drivers, as it requires llvm
+       '(;; drop r300 from default gallium drivers, as it requires llvm
          "--with-gallium-drivers=r600,svga,swrast"
-         "--enable-xa")
+         "--enable-xa"
+
+         ;; on non-intel systems, drop i915 and i965
+         ;; from the default dri drivers
+         ,@(match (%current-system)
+             ((or "x86_64-linux" "i686-linux")
+              '())
+             (_
+              '("--with-dri-drivers=nouveau,r200,radeon,swrast"))))
        #:phases (alist-cons-after
                  'unpack 'add-missing-m4-files
                  (lambda _



reply via email to

[Prev in Thread] Current Thread [Next in Thread]