guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: efl: Build with full opengl support except on armhf-linux.


From: guix-commits
Subject: 02/02: gnu: efl: Build with full opengl support except on armhf-linux.
Date: Mon, 26 Nov 2018 05:26:39 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 3b160bdccfd541660b9df7337979d88c3ce9bb25
Author: Efraim Flashner <address@hidden>
Date:   Mon Nov 26 12:23:05 2018 +0200

    gnu: efl: Build with full opengl support except on armhf-linux.
    
    * gnu/packages/enlightenment.scm (efl)[arguments]: Add 'configure-flags
    to use full opengl on all architectures except for armhf-linux, which
    will continue to use opengl-es.
---
 gnu/packages/enlightenment.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 4427dd0..fb77642 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -58,7 +58,8 @@
   #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
   #:use-module (gnu packages xdisorg)
-  #:use-module (gnu packages xorg))
+  #:use-module (gnu packages xorg)
+  #:use-module (ice-9 match))
 
 (define-public efl
   (package
@@ -144,8 +145,11 @@
                            "--enable-xinput22"
                            "--enable-image-loader-webp"
                            "--enable-multisense"
-                           "--with-opengl=es"
-                           "--enable-egl"
+                           ,@(match (%current-system)
+                               ("armhf-linux"
+                                '("--with-opengl=es" "--with-egl"))
+                               (_
+                                '("--with-opengl=full")))
                            "--enable-harfbuzz"
                            ;; for wayland
                            "--enable-wayland"



reply via email to

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