From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 06/10] gnu: mesa: Enable wayland support. Date: Mon, 18 Jul 2016 18:55:48 +0200 Message-ID: <20160718165552.1480-6-david@craven.ch> References: <20160709125011.24587-1-david@craven.ch> <20160718165552.1480-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37627) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPBqC-0001ir-W8 for guix-devel@gnu.org; Mon, 18 Jul 2016 12:56:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bPBqB-0002p7-1c for guix-devel@gnu.org; Mon, 18 Jul 2016 12:56:24 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:42448) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bPBq9-0002mM-RG for guix-devel@gnu.org; Mon, 18 Jul 2016 12:56:22 -0400 In-Reply-To: <20160718165552.1480-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: David Craven * gnu/packages/gl.scm (mesa): Enable configure-flags required by wayland. --- gnu/packages/gl.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 6e635a3..67bab1b 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -223,7 +223,8 @@ also known as DXTn or DXTC) for Mesa.") ("makedepend" ,makedepend) ("presentproto" ,presentproto) ("s2tc" ,s2tc) - ("udev" ,eudev))) + ("udev" ,eudev) + ("wayland" ,wayland))) (native-inputs `(("pkg-config" ,pkg-config) ("python" ,python-2))) @@ -233,12 +234,16 @@ also known as DXTn or DXTC) for Mesa.") "--with-gallium-drivers=r600,svga,swrast,nouveau" ;; Enable various optional features. TODO: opencl requires libclc, ;; omx requires libomxil-bellagio - "--with-egl-platforms=x11,drm" + "--with-egl-platforms=x11,drm,wayland" "--enable-glx-tls" ;Thread Local Storage, improves performance ;; "--enable-opencl" ;; "--enable-omx" "--enable-osmesa" "--enable-xa" + ;; features required by wayland + "--enable-gles2" + "--enable-gbm" + "--enable-shared-glapi" ;; on non-intel systems, drop i915 and i965 ;; from the default dri drivers -- 2.9.0