- Update to 2.8.0.

This commit is contained in:
Stephen Montgomery-Smith 2015-06-26 23:29:08 +00:00
parent 5d824aa478
commit eab093f334
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=390679
3 changed files with 3 additions and 23 deletions

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= octave-forge-nan
PORTVERSION= 2.7.4
PORTVERSION= 2.8.0
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -1,2 +1,2 @@
SHA256 (octave-forge/nan-2.7.4.tar.gz) = 93117f3899e2a02207aeb003eaecca13ec2a1ab752455957dfed99315abe452d
SIZE (octave-forge/nan-2.7.4.tar.gz) = 169635
SHA256 (octave-forge/nan-2.8.0.tar.gz) = ccab738e704fab44aa09ed4b94c6fad523f45c2c73d4492eb776dd1473a24346
SIZE (octave-forge/nan-2.8.0.tar.gz) = 170111

View file

@ -1,20 +0,0 @@
--- 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;