Received: by mail.netbsd.org (Postfix, from userid 605) id A394D84DAB; Sat, 28 Mar 2020 08:58:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 29EDF84CDB for ; Sat, 28 Mar 2020 08:58:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id geVDdNSYHUy5 for ; Sat, 28 Mar 2020 08:58:25 +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 79C6E84D2D for ; Sat, 28 Mar 2020 08:58:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6495DFB27; Sat, 28 Mar 2020 08:58:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585385905246600" MIME-Version: 1.0 Date: Sat, 28 Mar 2020 08:58:25 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/devel/wayland To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20200328085825.6495DFB27@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. --_----------=_1585385905246600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Sat Mar 28 08:58:25 UTC 2020 Modified Files: pkgsrc/devel/wayland: platform.mk Log Message: wayland: don't claim support on non-EGL platforms. GTK3 expects wayland and EGL to come together. EGL isn't a requirement for wayland, but not claiming support will possibly make life easier on lesser-used platforms, and is certainly a good idea for the freeze. "good for now" - nia PR pkg/55117: gtk3 does not compile w/o EGL To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/wayland/platform.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585385905246600 Content-Disposition: inline Content-Length: 966 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/wayland/platform.mk diff -u pkgsrc/devel/wayland/platform.mk:1.5 pkgsrc/devel/wayland/platform.mk:1.6 --- pkgsrc/devel/wayland/platform.mk:1.5 Sat Jan 4 02:06:02 2020 +++ pkgsrc/devel/wayland/platform.mk Sat Mar 28 08:58:25 2020 @@ -1,13 +1,17 @@ -# $NetBSD: platform.mk,v 1.5 2020/01/04 02:06:02 nia Exp $ +# $NetBSD: platform.mk,v 1.6 2020/03/28 08:58:25 maya Exp $ .if !defined(PLATFORM_SUPPORTS_WAYLAND) . include "../../mk/bsd.fast.prefs.mk" +.include "../../graphics/MesaLib/features.mk" + # Please only add operating systems here after verifying that both # devel/wayland and devel/wayland-protocols build. WAYLAND_PLATFORMS+= Linux-*-* -.if ${OPSYS} == "NetBSD" && empty(OS_VERSION:M[0-8].*) +# We can have Wayland without EGL, but a lot of things expect +# wayland and EGL support together. +.if ${OPSYS} == "NetBSD" && !empty(MESALIB_SUPPORTS_EGL:M[Yy][Ee][Ss]) PLATFORM_SUPPORTS_WAYLAND= yes .endif --_----------=_1585385905246600--