Received: by mail.netbsd.org (Postfix, from userid 605) id 08B8F84CE9; Mon, 21 Oct 2019 12:30:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8226A84CD5 for ; Mon, 21 Oct 2019 12:30:37 +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 BFpKAgpXbZAg for ; Mon, 21 Oct 2019 12:30:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F1C9784CD4 for ; Mon, 21 Oct 2019 12:30:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EBCA0F97B; Mon, 21 Oct 2019 12:30:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1571661036295520" MIME-Version: 1.0 Date: Mon, 21 Oct 2019 12:30:36 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/MesaLib To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20191021123036.EBCA0F97B@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. --_----------=_1571661036295520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Oct 21 12:30:36 UTC 2019 Modified Files: pkgsrc/graphics/MesaLib: buildlink3.mk options.mk Log Message: MesaLib: Turn off some more "Mesa thinks SunOS is not DRI" hacks To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 pkgsrc/graphics/MesaLib/buildlink3.mk cvs rdiff -u -r1.74 -r1.75 pkgsrc/graphics/MesaLib/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1571661036295520 Content-Disposition: inline Content-Length: 1604 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib/buildlink3.mk diff -u pkgsrc/graphics/MesaLib/buildlink3.mk:1.63 pkgsrc/graphics/MesaLib/buildlink3.mk:1.64 --- pkgsrc/graphics/MesaLib/buildlink3.mk:1.63 Wed Sep 4 10:56:50 2019 +++ pkgsrc/graphics/MesaLib/buildlink3.mk Mon Oct 21 12:30:36 2019 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.63 2019/09/04 10:56:50 nia Exp $ +# $NetBSD: buildlink3.mk,v 1.64 2019/10/21 12:30:36 nia Exp $ BUILDLINK_TREE+= MesaLib @@ -21,7 +21,7 @@ pkgbase:= MesaLib .if ${X11_TYPE} == "modular" MESALIB_SUPPORTS_OSMESA= yes MESALIB_SUPPORTS_GLESv2= yes -. if ${OPSYS} != "Darwin" && ${OPSYS} != "Cygwin" && ${OPSYS} != "SunOS" +. if ${OPSYS} != "Darwin" && ${OPSYS} != "Cygwin" MESALIB_SUPPORTS_EGL= yes . else MESALIB_SUPPORTS_EGL= no Index: pkgsrc/graphics/MesaLib/options.mk diff -u pkgsrc/graphics/MesaLib/options.mk:1.74 pkgsrc/graphics/MesaLib/options.mk:1.75 --- pkgsrc/graphics/MesaLib/options.mk:1.74 Fri Oct 18 09:57:07 2019 +++ pkgsrc/graphics/MesaLib/options.mk Mon Oct 21 12:30:36 2019 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.74 2019/10/18 09:57:07 nia Exp $ +# $NetBSD: options.mk,v 1.75 2019/10/21 12:30:36 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.MesaLib @@ -85,7 +85,7 @@ PLIST.glx= yes . if ${OPSYS} != "Darwin" && ${OPSYS} != "Cygwin" MESON_ARGS+= -Dglx=dri . include "../../multimedia/libvdpau/available.mk" -. if ${OPSYS} != "SunOS" && ${VDPAU_AVAILABLE} == "yes" +. if ${VDPAU_AVAILABLE} == "yes" MESON_ARGS+= -Dgallium-vdpau=true PLIST.vdpau= yes . include "../../multimedia/libvdpau/buildlink3.mk" --_----------=_1571661036295520--