From b3f2ca875353ae4395e9ea0abb33f08dd6b3867c Mon Sep 17 00:00:00 2001 From: jtb Date: Wed, 23 May 2001 20:29:15 +0000 Subject: No longer needed. --- math/gsl/patches/patch-aa | 100 ---------------------------------------------- math/gsl/patches/patch-ab | 13 ------ math/gsl/patches/patch-ac | 44 -------------------- math/gsl/patches/patch-ad | 12 ------ math/gsl/patches/patch-ae | 12 ------ 5 files changed, 181 deletions(-) delete mode 100644 math/gsl/patches/patch-aa delete mode 100644 math/gsl/patches/patch-ab delete mode 100644 math/gsl/patches/patch-ac delete mode 100644 math/gsl/patches/patch-ad delete mode 100644 math/gsl/patches/patch-ae diff --git a/math/gsl/patches/patch-aa b/math/gsl/patches/patch-aa deleted file mode 100644 index 2c45a7a722a..00000000000 --- a/math/gsl/patches/patch-aa +++ /dev/null @@ -1,100 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2001/03/28 21:49:41 jtb Exp $ - ---- /dev/null Wed Mar 28 17:30:50 2001 -+++ ieee-utils/fp-netbsd.c -@@ -0,0 +1,95 @@ -+#include -+#include -+#include -+#include -+ -+int -+gsl_ieee_set_mode (int precision, int rounding, int exception_mask) -+{ -+ fp_except mode = 0; -+ fp_rnd rnd = 0; -+ -+ switch (precision) -+ { -+ case GSL_IEEE_SINGLE_PRECISION: -+ GSL_ERROR ("NetBSD only supports default precision rounding", -+ GSL_EUNSUP); -+ break; -+ case GSL_IEEE_DOUBLE_PRECISION: -+ GSL_ERROR ("NetBSD only supports default precision rounding", -+ GSL_EUNSUP); -+ break; -+ case GSL_IEEE_EXTENDED_PRECISION: -+ GSL_ERROR ("NetBSD only supports default precision rounding", -+ GSL_EUNSUP); -+ break; -+ } -+ -+ switch (rounding) -+ { -+ case GSL_IEEE_ROUND_TO_NEAREST: -+ rnd = FP_RN; -+ fpsetround (rnd); -+ break; -+ case GSL_IEEE_ROUND_DOWN: -+ rnd = FP_RM; -+ fpsetround (rnd); -+ break; -+ case GSL_IEEE_ROUND_UP: -+ rnd = FP_RP; -+ fpsetround (rnd); -+ break; -+ case GSL_IEEE_ROUND_TO_ZERO: -+ rnd = FP_RZ; -+ fpsetround (rnd); -+ break; -+ default: -+ rnd = FP_RN; -+ fpsetround (rnd); -+ } -+ -+/* Turn on all available exceptions apart from 'inexact'. -+ Denormalized operand exception not available on all ports. */ -+ -+#ifdef FP_X_DNML -+ mode = FP_X_INV | FP_X_DNML | FP_X_DZ | FP_X_OFL | FP_X_UFL; -+#else -+ mode = FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL; -+#endif -+ -+ if (exception_mask & GSL_IEEE_MASK_INVALID) -+ mode &= ~ FP_X_INV; -+ -+ if (exception_mask & GSL_IEEE_MASK_DENORMALIZED) -+#ifdef FP_X_DNML -+ mode &= ~ FP_X_DNML; -+#else -+ GSL_ERROR ("netbsd-" MACHINE " does not support the denormalized operand exception. " -+ "Use 'mask-denormalized' to work around this.", -+ GSL_EUNSUP); -+#endif -+ -+ if (exception_mask & GSL_IEEE_MASK_DIVISION_BY_ZERO) -+ mode &= ~ FP_X_DZ; -+ -+ if (exception_mask & GSL_IEEE_MASK_OVERFLOW) -+ mode &= ~ FP_X_OFL; -+ -+ if (exception_mask & GSL_IEEE_MASK_UNDERFLOW) -+ mode &= ~ FP_X_UFL; -+ -+ if (exception_mask & GSL_IEEE_TRAP_INEXACT) -+ { -+ mode |= FP_X_IMP; -+ } -+ else -+ { -+ mode &= ~ FP_X_IMP; -+ } -+ -+ fpsetmask (mode); -+ -+ return GSL_SUCCESS; -+ -+} -+ diff --git a/math/gsl/patches/patch-ab b/math/gsl/patches/patch-ab deleted file mode 100644 index 48a6bd3fdfc..00000000000 --- a/math/gsl/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2001/03/28 21:49:41 jtb Exp $ - ---- ieee-utils/fp.c.orig -+++ ieee-utils/fp.c -@@ -22,6 +22,8 @@ - #include "fp-tru64.c" - #elif defined(HAVE_FREEBSD_IEEE_INTERFACE) - #include "fp-freebsd.c" -+#elif defined(HAVE_NETBSD_IEEE_INTERFACE) -+#include "fp-netbsd.c" - #else - #include "fp-unknown.c" - #endif diff --git a/math/gsl/patches/patch-ac b/math/gsl/patches/patch-ac deleted file mode 100644 index d7861c177f5..00000000000 --- a/math/gsl/patches/patch-ac +++ /dev/null @@ -1,44 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2001/03/28 21:49:42 jtb Exp $ - ---- configure.orig Thu Oct 26 20:08:46 2000 -+++ configure -@@ -2645,13 +2645,20 @@ - - echo "$ac_t""irix" 1>&6 - ;; -- *-*-*bsd*) -+ *-*-freebsd*) - cat >> confdefs.h <<\EOF - #define HAVE_FREEBSD_IEEE_INTERFACE 1 - EOF - - echo "$ac_t""freebsd" 1>&6 - ;; -+ *-*-netbsd*) -+ cat >> confdefs.h <<\EOF -+#define HAVE_NETBSD_IEEE_INTERFACE 1 -+EOF -+ -+ echo "$ac_t""netbsd" 1>&6 -+ ;; - *) - echo "$ac_t""unknown" 1>&6 - ;; -@@ -3065,6 +3072,7 @@ - s%@CC@%$CC%g - s%@CPP@%$CPP%g - s%@LN_S@%$LN_S%g -+s%@AS@%$AS%g - s%@build@%$build%g - s%@build_alias@%$build_alias%g - s%@build_cpu@%$build_cpu%g -@@ -3077,6 +3085,9 @@ - s%@LIBOBJS@%$LIBOBJS%g - s%@GSL_CFLAGS@%$GSL_CFLAGS%g - s%@GSL_LIBS@%$GSL_LIBS%g -+s%@OBJEXT@%$OBJEXT%g -+s%@EXEEXT@%$EXEEXT%g -+s%@OBJDUMP@%$OBJDUMP%g - - CEOF - EOF diff --git a/math/gsl/patches/patch-ad b/math/gsl/patches/patch-ad deleted file mode 100644 index 6a8eced1bf1..00000000000 --- a/math/gsl/patches/patch-ad +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2001/03/28 21:49:42 jtb Exp $ - ---- acconfig.h.orig -+++ acconfig.h -@@ -34,6 +34,7 @@ - #undef HAVE_IRIX_IEEE_INTERFACE - #undef HAVE_AIX_IEEE_INTERFACE - #undef HAVE_FREEBSD_IEEE_INTERFACE -+#undef HAVE_NETBSD_IEEE_INTERFACE - - /* Define this if we need to include /usr/include/float.h explicitly - in order to get FP_RND_RN and related macros. This is known to be diff --git a/math/gsl/patches/patch-ae b/math/gsl/patches/patch-ae deleted file mode 100644 index 1450c3b24fe..00000000000 --- a/math/gsl/patches/patch-ae +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2001/03/28 21:49:42 jtb Exp $ - ---- config.h.in.orig -+++ config.h.in -@@ -86,6 +86,7 @@ - #undef HAVE_IRIX_IEEE_INTERFACE - #undef HAVE_AIX_IEEE_INTERFACE - #undef HAVE_FREEBSD_IEEE_INTERFACE -+#undef HAVE_NETBSD_IEEE_INTERFACE - - /* Define this if we need to include /usr/include/float.h explicitly - in order to get FP_RND_RN and related macros. This is known to be -- cgit v1.2.3