summaryrefslogtreecommitdiff
path: root/math/octave-devel
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-02-20 20:56:37 +0000
committerSteve Price <steve@FreeBSD.org>2000-02-20 20:56:37 +0000
commitbfadcefe24ff5de2546ed6df8a56e11c68795114 (patch)
tree6f5175291f3d17fce5a6a4e6df389f0d09877a72 /math/octave-devel
parentRecent changes to the compiler on the Alpha seem to have fixed the build (diff)
The Alpha's fpsetmask(3) routine doesn't have a FP_X_DNML bit, so remove it
and get this port to building again.
Notes
Notes: svn path=/head/; revision=26058
Diffstat (limited to 'math/octave-devel')
-rw-r--r--math/octave-devel/files/patch-ag14
1 files changed, 14 insertions, 0 deletions
diff --git a/math/octave-devel/files/patch-ag b/math/octave-devel/files/patch-ag
new file mode 100644
index 000000000000..91182ab14eb2
--- /dev/null
+++ b/math/octave-devel/files/patch-ag
@@ -0,0 +1,14 @@
+--- src/sysdep.cc.orig Fri Feb 18 11:51:53 2000
++++ src/sysdep.cc Fri Feb 18 11:52:46 2000
+@@ -110,7 +110,11 @@
+ {
+ #if defined (HAVE_FLOATINGPOINT_H)
+ // Disable trapping on common exceptions.
++#if defined(__alpha__)
++ fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_UFL|FP_X_IMP));
++#else
+ fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_DNML|FP_X_UFL|FP_X_IMP));
++#endif
+ #endif
+ }
+ #endif