Received: by mail.netbsd.org (Postfix, from userid 605) id 6654A84D4C; Sun, 10 Nov 2019 14:17:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E2A0F84D33 for ; Sun, 10 Nov 2019 14:17:38 +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 AJrZW436gqQN for ; Sun, 10 Nov 2019 14:17:38 +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 42DAA84D2D for ; Sun, 10 Nov 2019 14:17:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 35BDCFA95; Sun, 10 Nov 2019 14:17:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157339545844180" MIME-Version: 1.0 Date: Sun, 10 Nov 2019 14:17:38 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/spidermonkey52 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20191110141738.35BDCFA95@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. --_----------=_157339545844180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Nov 10 14:17:38 UTC 2019 Modified Files: pkgsrc/lang/spidermonkey52: Makefile Log Message: spidermonkey52: Requires gcc 4.8 or higher To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/lang/spidermonkey52/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157339545844180 Content-Disposition: inline Content-Length: 1041 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/spidermonkey52/Makefile diff -u pkgsrc/lang/spidermonkey52/Makefile:1.18 pkgsrc/lang/spidermonkey52/Makefile:1.19 --- pkgsrc/lang/spidermonkey52/Makefile:1.18 Sun Aug 11 13:21:24 2019 +++ pkgsrc/lang/spidermonkey52/Makefile Sun Nov 10 14:17:38 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2019/08/11 13:21:24 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2019/11/10 14:17:38 nia Exp $ DISTNAME= mozjs-52.7.4 PKGREVISION= 11 @@ -17,6 +17,9 @@ USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config perl gmake autoconf213 AUTOCONF_REQD= 2.13 +# ERROR: Only GCC 4.8 or newer is supported +GCC_REQD+= 4.8 + CONFIGURE_ARGS+= --prefix=${PREFIX} CONFIGURE_ARGS+= --enable-readline CONFIGURE_ARGS+= --with-system-icu @@ -43,7 +46,6 @@ CXXFLAGS+= -march=i586 .elif ${MACHINE_ARCH} == "powerpc" # PowerPC doesn't have the necessary hardware-backed atomics, it needs # GCC's libatomic. Tested with GCC 4.8.5 and 7.3 on NetBSD 8.0/powerpc. -GCC_REQD+= 4.8 USE_PKGSRC_GCC= yes USE_PKGSRC_GCC_RUNTIME= yes .endif --_----------=_157339545844180--