From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 12 03:06:47 2009 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C67CC106564A; Wed, 12 Aug 2009 03:06:47 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 947478FC45; Wed, 12 Aug 2009 03:06:47 +0000 (UTC) Received: from laptop3.gateway.2wire.net (cauchy.math.missouri.edu [128.206.184.213]) by cauchy.math.missouri.edu (8.14.3/8.14.3) with ESMTP id n7C2rZcH013516; Tue, 11 Aug 2009 21:53:35 -0500 (CDT) (envelope-from stephen@missouri.edu) Message-ID: <4A822EAF.40709@missouri.edu> Date: Tue, 11 Aug 2009 21:53:35 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.22) Gecko/20090807 SeaMonkey/1.1.17 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <200908081830.n78IU46k033492@freefall.freebsd.org> In-Reply-To: <200908081830.n78IU46k033492@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------000801080202080804090504" Cc: Subject: Re: ports/137577: Update of math/GiNaC port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2009 03:06:48 -0000 This is a multi-part message in MIME format. --------------000801080202080804090504 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/137577'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=137577 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: Update of math/GiNaC port >> Arrival-Date: Sat Aug 08 18:30:04 UTC 2009 > > > Put this patch into files. --------------000801080202080804090504 Content-Type: text/plain; name="patch-ginac__parser__parser.cpp" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-ginac__parser__parser.cpp" --- ginac/parser/parser.cpp-orig 2009-08-08 12:27:12.000000000 -0500 +++ ginac/parser/parser.cpp 2009-08-08 12:29:20.000000000 -0500 @@ -66,7 +66,7 @@ Parse_error_("no function \"" << name << "\" with " << args.size() << " arguments"); } - ex ret = GiNaC::function((unsigned)reader->second, args); + ex ret = GiNaC::function((size_t)reader->second, args); return ret; } --------------000801080202080804090504--