Received: by mail.netbsd.org (Postfix, from userid 605) id D5DF884D79; Thu, 17 May 2018 16:11:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5F42184D76 for ; Thu, 17 May 2018 16:11:24 +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 ZzNMhxCQhUH0 for ; Thu, 17 May 2018 16:11:24 +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 B6D8584D73 for ; Thu, 17 May 2018 16:11:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1160FBEC; Thu, 17 May 2018 16:11:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152657348359030" MIME-Version: 1.0 Date: Thu, 17 May 2018 16:11:23 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/graphics/MesaLib To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20180517161123.B1160FBEC@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. --_----------=_152657348359030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu May 17 16:11:23 UTC 2018 Modified Files: pkgsrc/graphics/MesaLib: options.mk Log Message: MesaLib: stopgap fix to allow netbsd wih base xorg to build this package. disable dri option unless modular xorg is used. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 pkgsrc/graphics/MesaLib/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152657348359030 Content-Disposition: inline Content-Length: 877 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib/options.mk diff -u pkgsrc/graphics/MesaLib/options.mk:1.58 pkgsrc/graphics/MesaLib/options.mk:1.59 --- pkgsrc/graphics/MesaLib/options.mk:1.58 Sat Mar 24 22:11:14 2018 +++ pkgsrc/graphics/MesaLib/options.mk Thu May 17 16:11:23 2018 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.58 2018/03/24 22:11:14 sevan Exp $ +# $NetBSD: options.mk,v 1.59 2018/05/17 16:11:23 maya Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.MesaLib PKG_SUPPORTED_OPTIONS= llvm dri @@ -14,8 +14,8 @@ PKG_SUGGESTED_OPTIONS+= llvm .if ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD" || \ ${OPSYS} == "DragonFly" || ${OPSYS} == "Linux" || \ - ${OPSYS} == "SunOS" || ${OPSYS} == "NetBSD" || \ - ${OPSYS} == "Darwin" + ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" || \ + (${OPSYS} == "NetBSD" && ${X11_TYPE} == "modular") PKG_SUGGESTED_OPTIONS+= dri .endif --_----------=_152657348359030--