diff options
author | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2021-02-21 22:41:34 +0000 |
---|---|---|
committer | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2021-02-21 22:41:34 +0000 |
commit | 6473aac25b6dc63be299faa4fc1ed9cde77f1957 (patch) | |
tree | 5f81e978342b34ec7b1784c80dc5be7182d55dcf /math/octave-forge-nurbs/files/patch-bspeval.cc | |
parent | - Fix pkg-plist (diff) |
- Update math/octave to 6.2.0.
- Bump portrevision of dependent ports.
- Add patches to dependent ports math/octave-forge-* if I can figure them out.
- Mark broken dependent ports I couldn't figure out.
Notes
Notes:
svn path=/head/; revision=566249
Diffstat (limited to 'math/octave-forge-nurbs/files/patch-bspeval.cc')
-rw-r--r-- | math/octave-forge-nurbs/files/patch-bspeval.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/octave-forge-nurbs/files/patch-bspeval.cc b/math/octave-forge-nurbs/files/patch-bspeval.cc new file mode 100644 index 000000000000..fa41bda956b3 --- /dev/null +++ b/math/octave-forge-nurbs/files/patch-bspeval.cc @@ -0,0 +1,11 @@ +--- bspeval.cc.orig 2021-02-21 22:35:52 UTC ++++ bspeval.cc +@@ -113,7 +113,7 @@ static bool bspeval_bad_arguments (const octave_value_ + error("bspeval: the knot vector should be a real vector."); + return true; + } +- if (!args(3).is_real_type()) ++ if (!args(3).isreal()) + { + error("bspeval: the set of parametric points should be an array of doubles."); + return true; |