Received: by mail.netbsd.org (Postfix, from userid 605) id 352C284E5A; Sun, 15 Jul 2018 23:15:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1FAC784DCE for ; Sun, 15 Jul 2018 23:15:03 +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 J__g0KPC6AG5 for ; Sun, 15 Jul 2018 23:15:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7748884C8D for ; Sun, 15 Jul 2018 23:15:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 20CDBFBEC; Sun, 15 Jul 2018 23:15:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153169650226180" MIME-Version: 1.0 Date: Sun, 15 Jul 2018 23:15:02 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/firefox To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20180715231502.20CDBFBEC@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. --_----------=_153169650226180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sun Jul 15 23:15:02 UTC 2018 Modified Files: pkgsrc/www/firefox: Makefile mozilla-common.mk Log Message: Fix PR pkg/53429. Use libstdc++ from pkgsrc gcc61-libs to fix runtime error BUmp PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.337 -r1.338 pkgsrc/www/firefox/Makefile cvs rdiff -u -r1.111 -r1.112 pkgsrc/www/firefox/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153169650226180 Content-Disposition: inline Content-Length: 1578 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox/Makefile diff -u pkgsrc/www/firefox/Makefile:1.337 pkgsrc/www/firefox/Makefile:1.338 --- pkgsrc/www/firefox/Makefile:1.337 Fri Jul 6 20:51:57 2018 +++ pkgsrc/www/firefox/Makefile Sun Jul 15 23:15:01 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.337 2018/07/06 20:51:57 ryoon Exp $ +# $NetBSD: Makefile,v 1.338 2018/07/15 23:15:01 ryoon Exp $ FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} MOZ_BRANCH= 61.0 @@ -6,6 +6,7 @@ MOZ_BRANCH_MINOR= .1 DISTNAME= firefox-${FIREFOX_VER}.source PKGNAME= ${DISTNAME:S/.source//:S/b/beta/:S/esr//} +PKGREVISION= 1 CATEGORIES= www MASTER_SITES+= ${MASTER_SITE_MOZILLA:=firefox/releases/${FIREFOX_VER}/source/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/www/firefox/mozilla-common.mk diff -u pkgsrc/www/firefox/mozilla-common.mk:1.111 pkgsrc/www/firefox/mozilla-common.mk:1.112 --- pkgsrc/www/firefox/mozilla-common.mk:1.111 Fri Jul 6 20:50:03 2018 +++ pkgsrc/www/firefox/mozilla-common.mk Sun Jul 15 23:15:01 2018 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.111 2018/07/06 20:50:03 ryoon Exp $ +# $NetBSD: mozilla-common.mk,v 1.112 2018/07/15 23:15:01 ryoon Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -48,7 +48,11 @@ test: TOOLS_PLATFORM.tar= ${TOOLS_PATH.bsdtar} USE_TOOLS+= bsdtar .endif -GCC_REQD+= 6.1 +GCC_REQD= 6.1 +.if !empty(MACHINE_PLATFORM:MNetBSD-[0-7]**-*) || \ + !empty(MACHINE_PLATFORM:MNetBSD-8.[0-8]*-*) +USE_PKGSRC_GCC_RUNTIME= yes +.endif .if ${MACHINE_ARCH} == "i386" # Fix for PR pkg/48152. CXXFLAGS+= -march=i586 --_----------=_153169650226180--