summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorStephen Montgomery-Smith <stephen@FreeBSD.org>2014-03-03 03:12:25 +0000
committerStephen Montgomery-Smith <stephen@FreeBSD.org>2014-03-03 03:12:25 +0000
commit875be7b50c55cf1be8891ffc03ccf90c4dad75ee (patch)
tree802e2204a771a5ef1f1e4227651fd0ea236bfe00 /math
parent- Patch Makefile.in because mkoctfile cannot handle the -B option included (diff)
- Fix compile error with clang.
Notes
Notes: svn path=/head/; revision=346850
Diffstat (limited to 'math')
-rw-r--r--math/octave-forge-image/files/patch-bwdist.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/math/octave-forge-image/files/patch-bwdist.cc b/math/octave-forge-image/files/patch-bwdist.cc
new file mode 100644
index 000000000000..13ac487ddbf1
--- /dev/null
+++ b/math/octave-forge-image/files/patch-bwdist.cc
@@ -0,0 +1,11 @@
+--- bwdist.cc-orig 2014-03-03 03:07:22.000000000 +0000
++++ bwdist.cc 2014-03-03 03:07:36.000000000 +0000
+@@ -530,7 +530,7 @@
+ // Compute optional 'index to closest object pixel', only if requested
+ if (nargout > 1)
+ {
+- if (numel >= pow (2, 32))
++ if (numel >= pow (2., 32))
+ retval(1) = calc_index<uint64NDArray> (bw, xdist, ydist);
+ else
+ retval(1) = calc_index<uint32NDArray> (bw, xdist, ydist);