diff options
author | Wen Heping <wen@FreeBSD.org> | 2015-05-19 02:50:54 +0000 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2015-05-19 02:50:54 +0000 |
commit | d48119d6bc6d059b5775a07ae1fcdc5d8803c40c (patch) | |
tree | 940bc65cbad8248d8eb15f75812c597a05e9198e /math/cgal | |
parent | e1d7b1763d8e61e1490e87f7d30243817fd160d4 (diff) |
- Fix build on armv6
PR: 200286
Submitted by: mikael.urankar@gmail.com
Notes
Notes:
svn path=/head/; revision=386736
Diffstat (limited to 'math/cgal')
-rw-r--r-- | math/cgal/files/patch-include_CGAL_config.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/math/cgal/files/patch-include_CGAL_config.h b/math/cgal/files/patch-include_CGAL_config.h new file mode 100644 index 000000000000..aaadeab93ceb --- /dev/null +++ b/math/cgal/files/patch-include_CGAL_config.h @@ -0,0 +1,12 @@ +--- include/CGAL/config.h.orig 2015-05-14 09:38:12 UTC ++++ include/CGAL/config.h +@@ -255,7 +255,8 @@ + || defined(__x86_64) || defined(__x86_64__) \ + || defined(__ia64) || defined(__ia64__) \ + || defined(_M_IX86) || defined(_M_IA64) \ +- || defined(_M_ALPHA) || defined(_WIN64) ++ || defined(_M_ALPHA) || defined(_WIN64) \ ++ || defined(__arm) + # define CGAL_LITTLE_ENDIAN + #else + # error Unknown endianness |