Received: by mail.netbsd.org (Postfix, from userid 605) id C290384D5F; Sun, 20 Aug 2017 19:41:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 570BF84D39 for ; Sun, 20 Aug 2017 19:41:14 +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 OE0-2lQ42Svz for ; Sun, 20 Aug 2017 19:41:14 +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 B77CE84CE2 for ; Sun, 20 Aug 2017 19:41:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AD7CBFAD0; Sun, 20 Aug 2017 19:41:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503258073148780" MIME-Version: 1.0 Date: Sun, 20 Aug 2017 19:41:13 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/graphics/MesaLib To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170820194113.AD7CBFAD0@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. --_----------=_1503258073148780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Aug 20 19:41:13 UTC 2017 Modified Files: pkgsrc/graphics/MesaLib: Makefile Log Message: Never use writable text segments on i386. Bump revision. To generate a diff of this commit: cvs rdiff -u -r1.137 -r1.138 pkgsrc/graphics/MesaLib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503258073148780 Content-Disposition: inline Content-Length: 922 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib/Makefile diff -u pkgsrc/graphics/MesaLib/Makefile:1.137 pkgsrc/graphics/MesaLib/Makefile:1.138 --- pkgsrc/graphics/MesaLib/Makefile:1.137 Wed Mar 22 20:22:31 2017 +++ pkgsrc/graphics/MesaLib/Makefile Sun Aug 20 19:41:13 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.137 2017/03/22 20:22:31 markd Exp $ +# $NetBSD: Makefile,v 1.138 2017/08/20 19:41:13 joerg Exp $ DISTNAME= mesa-11.2.2 PKGNAME= ${DISTNAME:S/mesa/MesaLib/} -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= graphics x11 MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/${PKGVERSION_NOREV}/ EXTRACT_SUFX= .tar.xz @@ -61,6 +61,10 @@ SUBST_SED.drirc+= -e 's|/etc/|${PREFIX .include "../../mk/compiler.mk" .include "options.mk" +.if ${MACHINE_ARCH} == "i386" +CONFIGURE_ARGS+= --enable-glx-read-only-text +.endif + .if !empty(PKGSRC_COMPILER:Mclang) SUBST_CLASSES+= tr1 SUBST_STAGE.tr1= pre-configure --_----------=_1503258073148780--