1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/math/octave/files/patch-af
Steve Price f720bd130b Sprinkle in some '#if !defined(__FreeBSD__)' incantations so we don't get
OSF1/Alpha characteristics when the machine's arch is Alpha and the OS is
FreeBSD.
1999-07-05 16:27:03 +00:00

21 lines
647 B
Plaintext

--- liboctave/lo-ieee.cc.orig Sun Jun 20 23:29:47 1999
+++ liboctave/lo-ieee.cc Sun Jun 20 23:30:30 1999
@@ -70,7 +70,7 @@
octave_Inf = 1.0 / (tmp - tmp);
#elif defined (linux)
octave_Inf = HUGE_VAL;
-#elif defined (__alpha__)
+#elif defined (__alpha__) && !defined(__FreeBSD__)
extern unsigned int DINFINITY[2];
octave_Inf = (*((double *) (DINFINITY)));
#elif defined (HAVE_INFINITY)
@@ -93,7 +93,7 @@
#if defined (linux)
octave_NaN = NAN;
-#elif defined (__alpha__)
+#elif defined (__alpha__) && !defined(__FreeBSD__)
extern unsigned int DQNAN[2];
octave_NaN = (*((double *) (DQNAN)));
#elif defined (HAVE_QUIET_NAN)