Received: by mail.netbsd.org (Postfix, from userid 605) id 77DFE84D66; Thu, 10 Jan 2019 18:11:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E480184D2B for ; Thu, 10 Jan 2019 18:11:56 +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 Juyg9viBelZx for ; Thu, 10 Jan 2019 18:11:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4562E84C77 for ; Thu, 10 Jan 2019 18:11:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3FB9BFB16; Thu, 10 Jan 2019 18:11:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1547143916169440" MIME-Version: 1.0 Date: Thu, 10 Jan 2019 18:11:56 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/lang/ghc7 To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20190110181156.3FB9BFB16@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. --_----------=_1547143916169440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu Jan 10 18:11:56 UTC 2019 Modified Files: pkgsrc/lang/ghc7: Makefile Log Message: ghc7: not aslr safe, either. bump PKGREVISION Fix PR pkg/53842. ghci dies with: ghc: mmap 593920 bytes at 0x40000000: Cannot allocate memory To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/lang/ghc7/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1547143916169440 Content-Disposition: inline Content-Length: 1017 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ghc7/Makefile diff -u pkgsrc/lang/ghc7/Makefile:1.31 pkgsrc/lang/ghc7/Makefile:1.32 --- pkgsrc/lang/ghc7/Makefile:1.31 Mon Nov 12 14:40:21 2018 +++ pkgsrc/lang/ghc7/Makefile Thu Jan 10 18:11:56 2019 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.31 2018/11/12 14:40:21 jperkin Exp $ +# $NetBSD: Makefile,v 1.32 2019/01/10 18:11:56 maya Exp $ # ----------------------------------------------------------------------------- # Package metadata # DISTNAME= ghc-7.6.3-src PKGNAME= ${DISTNAME:S/-src$//} -PKGREVISION= 12 +PKGREVISION= 13 CATEGORIES= lang MASTER_SITES= https://www.haskell.org/ghc/dist/${PKGVERSION_NOREV}/ EXTRACT_SUFX= .tar.bz2 @@ -79,6 +79,8 @@ CONFIGURE_ENV+= \ NOT_PAX_MPROTECT_SAFE+= lib/${PKGNAME_NOREV}/ghc NOT_PAX_MPROTECT_SAFE+= lib/${PKGNAME_NOREV}/ghc-pkg +NOT_PAX_ASLR_SAFE+= lib/${PKGNAME_NOREV}/ghc +NOT_PAX_ASLR_SAFE+= lib/${PKGNAME_NOREV}/ghc-pkg # ----------------------------------------------------------------------------- # Build hooks --_----------=_1547143916169440--