summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSlawomir Lis <slis@gentoo.org>2016-09-21 08:50:54 +0200
committerSlawomir Lis <slis@gentoo.org>2016-09-21 13:56:57 +0200
commitee4a29effa2dc4c4d279dcfa57d4d8ff6574f6f0 (patch)
tree2dc85abc079fe419150dd5b7234e63a81ec94723 /sci-misc/repsnapper/files
parentapp-shells/bash-4.3_p46-r1: add alpha keyword (diff)
downloadgentoo-ee4a29effa2dc4c4d279dcfa57d4d8ff6574f6f0.tar.gz
gentoo-ee4a29effa2dc4c4d279dcfa57d4d8ff6574f6f0.tar.bz2
gentoo-ee4a29effa2dc4c4d279dcfa57d4d8ff6574f6f0.zip
sci-misc/repsnapper: Added patch to fix compilation error with newer gcc
This bug is issued in newer gcc's because of abs() method is moved into std namespace. Added a patch to fix the issue. Reported in bug 594474 Reported-By: Toralf Förster <toralf.foerster@gmx.de> Package-Manager: portage-2.3.0
Diffstat (limited to 'sci-misc/repsnapper/files')
-rw-r--r--sci-misc/repsnapper/files/std_abs.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/sci-misc/repsnapper/files/std_abs.patch b/sci-misc/repsnapper/files/std_abs.patch
new file mode 100644
index 000000000000..35aefe927008
--- /dev/null
+++ b/sci-misc/repsnapper/files/std_abs.patch
@@ -0,0 +1,11 @@
+--- libraries/amf/amftools-code/include/STL_File.h.orig 2016-09-21 08:35:10.600313039 +0200
++++ libraries/amf/amftools-code/include/STL_File.h 2016-09-21 08:35:58.303647256 +0200
+@@ -89,7 +89,7 @@
+ Vec3D v;
+ int OrigIndex;
+
+- static inline bool IsSoftLessThan(const aWeldVertex& v1, const aWeldVertex& v2){if(abs(v1.v.z - v2.v.z) <= WeldThresh){ if(abs(v1.v.y - v2.v.y) <= WeldThresh){ return v1.v.x < v2.v.x-WeldThresh;}else return (v1.v.y < v2.v.y-WeldThresh);} else return (v1.v.z < v2.v.z-WeldThresh); } //Is less then (generates a "hash" for sorting vertices by z for set
++ static inline bool IsSoftLessThan(const aWeldVertex& v1, const aWeldVertex& v2){if(std::abs(v1.v.z - v2.v.z) <= WeldThresh){ if(std::abs(v1.v.y - v2.v.y) <= WeldThresh){ return v1.v.x < v2.v.x-WeldThresh;}else return (v1.v.y < v2.v.y-WeldThresh);} else return (v1.v.z < v2.v.z-WeldThresh); } //Is less then (generates a "hash" for sorting vertices by z for set
+ static double WeldThresh; //weld threshold for importing from STL
+ };
+