Date: Fri, 17 Apr 2015 14:03:31 +0000 (UTC) From: Stephen Montgomery-Smith <stephen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384162 - in head/math/octave-forge-nan: . files Message-ID: <201504171403.t3HE3VbX088889@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: stephen Date: Fri Apr 17 14:03:31 2015 New Revision: 384162 URL: https://svnweb.freebsd.org/changeset/ports/384162 Log: - Update to 2.7.4. Added: head/math/octave-forge-nan/files/ head/math/octave-forge-nan/files/patch-histo_mex.cpp (contents, props changed) Modified: head/math/octave-forge-nan/Makefile head/math/octave-forge-nan/distinfo Modified: head/math/octave-forge-nan/Makefile ============================================================================== --- head/math/octave-forge-nan/Makefile Fri Apr 17 13:58:30 2015 (r384161) +++ head/math/octave-forge-nan/Makefile Fri Apr 17 14:03:31 2015 (r384162) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-nan -PORTVERSION= 2.7.1 +PORTVERSION= 2.7.4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-nan/distinfo ============================================================================== --- head/math/octave-forge-nan/distinfo Fri Apr 17 13:58:30 2015 (r384161) +++ head/math/octave-forge-nan/distinfo Fri Apr 17 14:03:31 2015 (r384162) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/nan-2.7.1.tar.gz) = 70093926a9d980810c8e665f8bdd2931a7b9ec0c765326eb193341fb0aa665af -SIZE (octave-forge/nan-2.7.1.tar.gz) = 169544 +SHA256 (octave-forge/nan-2.7.4.tar.gz) = 93117f3899e2a02207aeb003eaecca13ec2a1ab752455957dfed99315abe452d +SIZE (octave-forge/nan-2.7.4.tar.gz) = 169635 Added: head/math/octave-forge-nan/files/patch-histo_mex.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-nan/files/patch-histo_mex.cpp Fri Apr 17 14:03:31 2015 (r384162) @@ -0,0 +1,20 @@ +--- histo_mex.cpp-orig 2015-04-17 13:59:47.874099000 +0000 ++++ histo_mex.cpp 2015-03-30 20:52:08.000000000 +0000 +@@ -109,7 +109,7 @@ + float f1,f2; + f1 = ((float*)Sort.Table)[ix1]; + f2 = ((float*)Sort.Table)[ix2]; +- z = __isnanf(f1) - __isnanf(f2); ++ z = isnanf(f1) - isnanf(f2); + if (z) break; + + if (f1<f2) z = -1; +@@ -121,7 +121,7 @@ + double f1,f2; + f1 = ((double*)Sort.Table)[ix1]; + f2 = ((double*)Sort.Table)[ix2]; +- z = __isnan(f1) - __isnan(f2); ++ z = isnan(f1) - isnan(f2); + if (z) break; + + if (f1<f2) z = -1;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504171403.t3HE3VbX088889>