aboutsummaryrefslogtreecommitdiff
path: root/math/octave/files
diff options
context:
space:
mode:
authorStephen Montgomery-Smith <stephen@FreeBSD.org>2018-03-08 03:55:16 +0000
committerStephen Montgomery-Smith <stephen@FreeBSD.org>2018-03-08 03:55:16 +0000
commit87404b30d60c17523ec4e8906ba8ede530b8f681 (patch)
tree2f3c97bd66e5f24fb5a63bf53994350987633e86 /math/octave/files
parent001afd2ce3cf0f6a08de4351d5ce478af6d2cebb (diff)
downloadports-87404b30d60c17523ec4e8906ba8ede530b8f681.tar.gz
ports-87404b30d60c17523ec4e8906ba8ede530b8f681.zip
- Fix build on armv6.
PR: ports/223277 Submitted by: mikael.urankar@gmail.com
Notes
Notes: svn path=/head/; revision=463862
Diffstat (limited to 'math/octave/files')
-rw-r--r--math/octave/files/patch-libinterp_corefcn_sysdep.cc31
1 files changed, 31 insertions, 0 deletions
diff --git a/math/octave/files/patch-libinterp_corefcn_sysdep.cc b/math/octave/files/patch-libinterp_corefcn_sysdep.cc
new file mode 100644
index 000000000000..faae43687cf5
--- /dev/null
+++ b/math/octave/files/patch-libinterp_corefcn_sysdep.cc
@@ -0,0 +1,31 @@
+--- libinterp/corefcn/sysdep.cc.orig 2018-03-08 03:49:02 UTC
++++ libinterp/corefcn/sysdep.cc
+@@ -61,6 +61,10 @@ along with Octave; see the file COPYING.
+ # include <omp.h>
+ #endif
+
++#if defined (__FreeBSD__) && defined(__arm__)
++#include <fenv.h>
++#endif
++
+ #include "cmd-edit.h"
+ #include "file-ops.h"
+ #include "lo-mappers.h"
+@@ -97,6 +101,7 @@ along with Octave; see the file COPYING.
+ static void
+ BSD_init (void)
+ {
++#if (defined (__FreeBSD__) && !defined(__arm__))
+ # if defined (HAVE_FLOATINGPOINT_H)
+ // Disable trapping on common exceptions.
+ # if ! defined (FP_X_DNML)
+@@ -104,6 +109,9 @@ BSD_init (void)
+ # endif
+ fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_DNML|FP_X_UFL|FP_X_IMP));
+ # endif
++#else // FreeBSD && arm
++ fedisableexcept(FE_ALL_EXCEPT);
++#endif // FreeBSD && arm
+ }
+ #endif
+