freebsd-ports/math/octave/files/patch-ag
Norikatsu Shigemura 8aa301e227 o Update to 2.1.48.
PR:		ports/52902
Submitted by:	Ulrich Spoerlein <q@uni.de>
Suggested by:	Chris BeHanna
2003-06-09 17:19:23 +00:00

14 lines
352 B
Text

--- src/sysdep.cc.orig Sat Jan 4 15:21:29 2003
+++ src/sysdep.cc Tue Jun 10 01:23:09 2003
@@ -98,7 +98,11 @@
#ifndef FP_X_DNML
#define FP_X_DNML 0
#endif
+#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