diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-12-01 09:55:32 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-12-01 09:55:32 +0000 |
commit | 95465b01db26cdfe513eaac771267c536fabeca3 (patch) | |
tree | 023ce3e0a24c427f5a51e479107d031760d6cecb /graphics/nurbs++/files/patch-nurbsS.cpp | |
parent | - Reserve UID/GID 143 for mail/dovecot (diff) |
- Unbreak on 5.X and above: fix compile with gcc34
PR: ports/106117
Submitted by: Peter Johnson <johnson.peter@gmail.com>
Diffstat (limited to 'graphics/nurbs++/files/patch-nurbsS.cpp')
-rw-r--r-- | graphics/nurbs++/files/patch-nurbsS.cpp | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/graphics/nurbs++/files/patch-nurbsS.cpp b/graphics/nurbs++/files/patch-nurbsS.cpp new file mode 100644 index 000000000000..1f26cda2743a --- /dev/null +++ b/graphics/nurbs++/files/patch-nurbsS.cpp @@ -0,0 +1,68 @@ +--- nurbs/nurbsS.cpp.orig Mon May 13 14:07:46 2002 ++++ nurbs/nurbsS.cpp Fri Dec 1 00:32:26 2006 +@@ -30,7 +30,7 @@ + #include "integrate.h" + + #ifdef USING_VCC +-#include <malloc.h> ++#include <stdlib.h> + #endif + + /*! +@@ -3762,12 +3762,12 @@ + // we use and angle of 36 to view the object + // and position the rest according to this. + Point_nD<T,N> minP, maxP ; +- minP.x() = extremum(1,coordX) ; +- minP.y() = extremum(1,coordY) ; +- minP.z() = extremum(1,coordZ) ; +- maxP.x() = extremum(0,coordX) ; +- maxP.y() = extremum(0,coordY) ; +- maxP.z() = extremum(0,coordZ) ; ++ minP.x() = this->extremum(1,coordX) ; ++ minP.y() = this->extremum(1,coordY) ; ++ minP.z() = this->extremum(1,coordZ) ; ++ maxP.x() = this->extremum(0,coordX) ; ++ maxP.y() = this->extremum(0,coordY) ; ++ maxP.z() = this->extremum(0,coordZ) ; + + Point_nD<T,N> lookAt ; + lookAt.x() = (minP.x()+maxP.x())/2.0 ; +@@ -3860,12 +3860,12 @@ + // we use and angle of 36 to view the object + // and position the rest according to this. + Point_nD<T,N> minP, maxP ; +- minP.x() = extremum(1,coordX) ; +- minP.y() = extremum(1,coordY) ; +- minP.z() = extremum(1,coordZ) ; +- maxP.x() = extremum(0,coordX) ; +- maxP.y() = extremum(0,coordY) ; +- maxP.z() = extremum(0,coordZ) ; ++ minP.x() = this->extremum(1,coordX) ; ++ minP.y() = this->extremum(1,coordY) ; ++ minP.z() = this->extremum(1,coordZ) ; ++ maxP.x() = this->extremum(0,coordX) ; ++ maxP.y() = this->extremum(0,coordY) ; ++ maxP.z() = this->extremum(0,coordZ) ; + + Point_nD<T,N> lookAt ; + lookAt.x() = (minP.x()+maxP.x())/2.0 ; +@@ -4045,12 +4045,12 @@ + } + + Point_nD<T,N> minP, maxP ; +- minP.x() = extremum(1,coordX) ; +- minP.y() = extremum(1,coordY) ; +- minP.z() = extremum(1,coordZ) ; +- maxP.x() = extremum(0,coordX) ; +- maxP.y() = extremum(0,coordY) ; +- maxP.z() = extremum(0,coordZ) ; ++ minP.x() = this->extremum(1,coordX) ; ++ minP.y() = this->extremum(1,coordY) ; ++ minP.z() = this->extremum(1,coordZ) ; ++ maxP.x() = this->extremum(0,coordX) ; ++ maxP.y() = this->extremum(0,coordY) ; ++ maxP.z() = this->extremum(0,coordZ) ; + + Point_nD<T,N> lookAt ; + lookAt.x() = (minP.x()+maxP.x())/2.0 ; |