Received: by mail.netbsd.org (Postfix, from userid 605) id 00E2584DC8; Thu, 19 Dec 2019 22:18:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7C89584D4E for ; Thu, 19 Dec 2019 22:18:48 +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 3N0AUnIRI-Fy for ; Thu, 19 Dec 2019 22:18:48 +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 D8E7684C2B for ; Thu, 19 Dec 2019 22:18:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D7019FA97; Thu, 19 Dec 2019 22:18:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576793927159140" MIME-Version: 1.0 Date: Thu, 19 Dec 2019 22:18:47 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/lang/polyml To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20191219221847.D7019FA97@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. --_----------=_1576793927159140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu Dec 19 22:18:47 UTC 2019 Modified Files: pkgsrc/lang/polyml: Makefile Log Message: Needs to be build as gnu++03. Doesn't work yet due to PaX mprotect restrictions. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/lang/polyml/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576793927159140 Content-Disposition: inline Content-Length: 671 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/polyml/Makefile diff -u pkgsrc/lang/polyml/Makefile:1.20 pkgsrc/lang/polyml/Makefile:1.21 --- pkgsrc/lang/polyml/Makefile:1.20 Sun Nov 3 19:04:05 2019 +++ pkgsrc/lang/polyml/Makefile Thu Dec 19 22:18:47 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2019/11/03 19:04:05 rillig Exp $ +# $NetBSD: Makefile,v 1.21 2019/12/19 22:18:47 joerg Exp $ DISTNAME= polyml-5.7.1 CATEGORIES= lang @@ -20,7 +20,7 @@ WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-system-libffi USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c gnu++03 TEST_TARGET= tests PKGCONFIG_OVERRIDE= libpolyml/polyml.pc.in --_----------=_1576793927159140--