Received: by mail.netbsd.org (Postfix, from userid 605) id 16BDF84F05; Thu, 21 Jun 2018 11:05:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0FCC284EBA for ; Thu, 21 Jun 2018 11:05:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id UV_gtIKZ28q6 for ; Thu, 21 Jun 2018 11:05:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3EB7784CD4 for ; Thu, 21 Jun 2018 11:05:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 306B2FBEC; Thu, 21 Jun 2018 11:05:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1529579106115990" MIME-Version: 1.0 Date: Thu, 21 Jun 2018 11:05:06 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/graphics/clutter To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180621110506.306B2FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1529579106115990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jun 21 11:05:06 UTC 2018 Modified Files: pkgsrc/graphics/clutter: Makefile Log Message: clutter: Explicitly disable EGL support. The autodetection doesn't work correctly, and adding EGL support to cogl is complicated by it being an optional requirement in MesaLib, so simply disable and get this package building for now. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 pkgsrc/graphics/clutter/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1529579106115990 Content-Disposition: inline Content-Length: 904 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/clutter/Makefile diff -u pkgsrc/graphics/clutter/Makefile:1.58 pkgsrc/graphics/clutter/Makefile:1.59 --- pkgsrc/graphics/clutter/Makefile:1.58 Thu May 31 14:53:00 2018 +++ pkgsrc/graphics/clutter/Makefile Thu Jun 21 11:05:06 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.58 2018/05/31 14:53:00 youri Exp $ +# $NetBSD: Makefile,v 1.59 2018/06/21 11:05:06 jperkin Exp $ DISTNAME= clutter-1.26.2 CATEGORIES= graphics gnome @@ -18,6 +18,11 @@ USE_PKGLOCALEDIR= yes PKGCONFIG_OVERRIDE+= clutter/cally/cally.pc.in PKGCONFIG_OVERRIDE+= clutter/clutter.pc.in +# This requires cogl be built with EGL support, but EGL support is currently +# optional in MesaLib and not enabled in cogl, so just explicitly disable +# until this can be detected properly via various PKG_OPTIONS. +CONFIGURE_ARGS+= --disable-egl-backend + .include "options.mk" TEST_TARGET= check --_----------=_1529579106115990--