Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id C4AE97AAA2 for ; Sat, 16 Jul 2016 03:56:41 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7305385EB3; Sat, 16 Jul 2016 03:56:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 047F285E7D for ; Sat, 16 Jul 2016 03:56:41 +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 u1AEunLThydj for ; Sat, 16 Jul 2016 03:56:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8AA6184CE9 for ; Sat, 16 Jul 2016 03:56:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 85771FBB5; Sat, 16 Jul 2016 03:56:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1468641400106160" MIME-Version: 1.0 Date: Sat, 16 Jul 2016 03:56:40 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/math/qalculate To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20160716035640.85771FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1468641400106160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Sat Jul 16 03:56:40 UTC 2016 Modified Files: pkgsrc/math/qalculate: distinfo Added Files: pkgsrc/math/qalculate/patches: patch-libqalculate_MathStructure.cc Log Message: gcc6 build fix To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/math/qalculate/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/math/qalculate/patches/patch-libqalculate_MathStructure.cc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1468641400106160 Content-Disposition: inline Content-Length: 1797 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/qalculate/distinfo diff -u pkgsrc/math/qalculate/distinfo:1.21 pkgsrc/math/qalculate/distinfo:1.22 --- pkgsrc/math/qalculate/distinfo:1.21 Sun Dec 15 19:41:23 2013 +++ pkgsrc/math/qalculate/distinfo Sat Jul 16 03:56:40 2016 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.21 2013/12/15 19:41:23 joerg Exp $ +$NetBSD: distinfo,v 1.22 2016/07/16 03:56:40 markd Exp $ SHA1 (libqalculate-0.9.7.tar.gz) = c15f7f3a97995decf62cc964956fc1e374ecd78c RMD160 (libqalculate-0.9.7.tar.gz) = cc9e198769bea9731f92d2f3836875c83f715674 @@ -9,3 +9,4 @@ SHA1 (patch-ad) = 8327989bed8dee02c3881f SHA1 (patch-ae) = 7c9685c578a848cb4e9c55756110d891b9254f2b SHA1 (patch-af) = 3bab134f0ca10ecf91252e8211982be767e594e5 SHA1 (patch-libqalculate_Makefile.in) = 61113a55b69142c6cffa6a9ce754ba4367635275 +SHA1 (patch-libqalculate_MathStructure.cc) = 4c2a54f1b8ea84f1fd2c0f43a4ec384a2d69551f Added files: Index: pkgsrc/math/qalculate/patches/patch-libqalculate_MathStructure.cc diff -u /dev/null pkgsrc/math/qalculate/patches/patch-libqalculate_MathStructure.cc:1.1 --- /dev/null Sat Jul 16 03:56:40 2016 +++ pkgsrc/math/qalculate/patches/patch-libqalculate_MathStructure.cc Sat Jul 16 03:56:40 2016 @@ -0,0 +1,15 @@ +$NetBSD: patch-libqalculate_MathStructure.cc,v 1.1 2016/07/16 03:56:40 markd Exp $ + +Build with gcc6 - from redhat + +--- libqalculate/MathStructure.cc.orig 2010-01-05 15:15:27.000000000 +0000 ++++ libqalculate/MathStructure.cc +@@ -7163,7 +7163,7 @@ bool sr_gcd(const MathStructure &m1, con + c.polynomialContent(xvar, cont_c, eo); + d.polynomialContent(xvar, cont_d, eo); + MathStructure gamma; +- MathStructure::gcd(cont_c, cont_d, gamma, eo, false); ++ MathStructure::gcd(cont_c, cont_d, gamma, eo, NULL); + if(ddeg.isZero()) { + mgcd = gamma; + return true; --_----------=_1468641400106160--