From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SIP8K-0000Pm-AC for garchives@archives.gentoo.org; Thu, 12 Apr 2012 18:52:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C6BCE0D55; Thu, 12 Apr 2012 18:52:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D748DE0D4C for ; Thu, 12 Apr 2012 18:52:20 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2E1DE1B402E for ; Thu, 12 Apr 2012 18:52:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DE2C8E542C for ; Thu, 12 Apr 2012 18:52:18 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1334256694.d97e3bfcf7a39aac43df8a686eab955a1e9f65c4.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/kalgebra/files/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch X-VCS-Directories: kde-base/kalgebra/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d97e3bfcf7a39aac43df8a686eab955a1e9f65c4 X-VCS-Branch: master Date: Thu, 12 Apr 2012 18:52:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a4176ec3-1919-4025-9f01-940eb886d06b X-Archives-Hash: 18c4553873bdfef9fc8f901a8666b118 commit: d97e3bfcf7a39aac43df8a686eab955a1e9f65c4 Author: Michael Palimaka astralcloak net> AuthorDate: Thu Apr 12 18:51:34 2012 +0000 Commit: Michael Palimaka astralcloak net> CommitDate: Thu Apr 12 18:51:34 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3Dd97e3bfc [kde-base/kalgebra] Remove unused patch. It's now applied to analitza, where like it used to be before KDEEDU move= d to split repos. (Portage version: 2.1.10.56/git/Linux x86_64, unsigned Manifest commit) --- .../files/kalgebra-4.5.73-solaris-graph2d.patch | 22 --------------= ------ 1 files changed, 0 insertions(+), 22 deletions(-) diff --git a/kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patc= h b/kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch deleted file mode 100644 index d7fbcbf..0000000 --- a/kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch +++ /dev/null @@ -1,22 +0,0 @@ -Desc: Fix missing isinf() for Solaris (same way as for kcalc). -Author: Heiko Przybyl ---- kalgebra-4.3.2/kalgebra/analitzagui/graph2d.cpp.orig 2009-10-16 15:3= 1:29.804959916 +0200 -+++ kalgebra-4.3.2/kalgebra/analitzagui/graph2d.cpp 2009-10-16 15:35:36.= 879338408 +0200 -@@ -38,6 +38,17 @@ - #include "analitza.h" - #include "functionsmodel.h" -=20 -+// Stolen from kcalc. -+#if defined(Q_OS_SOLARIS) -+// Strictly by the standard, ininf() is a c99-ism which -+// is unavailable in C++. The IEEE FP headers provide -+// a function with similar functionality, so use that instead. -+// However, !finite(a) =3D=3D isinf(a) || isnan(a), so it's=20 -+// not 100% correct. -+#include -+#define isinf(a) !finite(a) -+#endif -+ - // #define DEBUG_GRAPH -=20 - using namespace std;