From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8qPl-0008De-GA for guix-patches@gnu.org; Thu, 11 May 2017 11:54:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8qPi-000132-Qk for guix-patches@gnu.org; Thu, 11 May 2017 11:54:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36273) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8qPi-00012q-Nu for guix-patches@gnu.org; Thu, 11 May 2017 11:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8qPi-0004MS-HR for guix-patches@gnu.org; Thu, 11 May 2017 11:54:02 -0400 Subject: bug#26887: [PATCH 05/11] gnu: cogl: Enable wayland support. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43175) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8qPB-0007r4-NV for guix-patches@gnu.org; Thu, 11 May 2017 11:53:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8qP8-0000dl-WF for guix-patches@gnu.org; Thu, 11 May 2017 11:53:29 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:41864 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8qP8-0000cL-Ov for guix-patches@gnu.org; Thu, 11 May 2017 11:53:26 -0400 From: Kei Kebreau Date: Thu, 11 May 2017 11:30:15 -0400 Message-Id: <20170511153021.14972-5-kei@openmailbox.org> In-Reply-To: <20170511153021.14972-1-kei@openmailbox.org> References: <20170511153021.14972-1-kei@openmailbox.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26887@debbugs.gnu.org * gnu/packages/gnome.scm (cogl)[inputs]: Add wayland. [arguments]: Add "--enable-wayland-egl-platform" and "--enable-wayland-egl-server". --- gnu/packages/gnome.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7f8aa839d..e6a1e3ca5 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2920,9 +2920,13 @@ throughout GNOME for API documentation).") ("cairo" ,cairo) ("pango" ,pango) ("gstreamer" ,gstreamer) - ("gst-plugins-base" ,gst-plugins-base))) + ("gst-plugins-base" ,gst-plugins-base) + ("wayland" ,wayland))) (arguments `(#:configure-flags (list "--enable-cogl-gst" + "--enable-wayland-egl-platform" + "--enable-wayland-egl-server" + ;; Arrange to pass an absolute file name to ;; dlopen for libGL.so. (string-append "--with-gl-libname=" -- 2.13.0