From f720bd130b9146a727c7ff295e1c431e07549114 Mon Sep 17 00:00:00 2001 From: Steve Price Date: Mon, 5 Jul 1999 16:27:03 +0000 Subject: 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. --- math/octave-devel/files/patch-af | 20 ++++++++++++++++++++ math/octave/files/patch-af | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 math/octave-devel/files/patch-af create mode 100644 math/octave/files/patch-af (limited to 'math') diff --git a/math/octave-devel/files/patch-af b/math/octave-devel/files/patch-af new file mode 100644 index 000000000000..ca96fadf0241 --- /dev/null +++ b/math/octave-devel/files/patch-af @@ -0,0 +1,20 @@ +--- 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) diff --git a/math/octave/files/patch-af b/math/octave/files/patch-af new file mode 100644 index 000000000000..ca96fadf0241 --- /dev/null +++ b/math/octave/files/patch-af @@ -0,0 +1,20 @@ +--- 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) -- cgit v1.2.3