aboutsummaryrefslogtreecommitdiff
path: root/math/octave-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'math/octave-devel/files')
-rw-r--r--math/octave-devel/files/patch-aa11
-rw-r--r--math/octave-devel/files/patch-ab12
-rw-r--r--math/octave-devel/files/patch-af20
-rw-r--r--math/octave-devel/files/patch-ag14
4 files changed, 0 insertions, 57 deletions
diff --git a/math/octave-devel/files/patch-aa b/math/octave-devel/files/patch-aa
deleted file mode 100644
index 7a5a5b68fd28..000000000000
--- a/math/octave-devel/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- doc/liboctave/Makefile.in.orig Wed May 12 13:10:19 1999
-+++ doc/liboctave/Makefile.in Wed May 12 13:04:51 1999
-@@ -42,7 +42,7 @@
- .PHONY: all
-
- liboctave.info: $(TEXINFO) ../conf.texi
-- -makeinfo -I$(srcdir) -I$(srcdir)/.. $(srcdir)/liboctave.texi
-+ -makeinfo --force -I$(srcdir) -I$(srcdir)/.. $(srcdir)/liboctave.texi
-
- liboctave.dvi: $(TEXINFO) ../conf.texi
- -TEXINPUTS="$(srcdir):$(srcdir)/..:$(TEXINPUTS):" ; \
diff --git a/math/octave-devel/files/patch-ab b/math/octave-devel/files/patch-ab
deleted file mode 100644
index 10fb6b644c30..000000000000
--- a/math/octave-devel/files/patch-ab
+++ /dev/null
@@ -1,12 +0,0 @@
---- configure.orig Fri Jan 21 14:55:43 2000
-+++ configure Fri Jan 21 14:56:25 2000
-@@ -6012,6 +6012,9 @@
- unwind-prot.o: unwind-prot.cc
- $(CXX) -c $(CPPFLAGS) $(CXXFLAGS_NO_PT_FLAGS) $<
-
-+xdiv.o: xdiv.cc
-+ $(CXX) -c $(CPPFLAGS) $(CXXFLAGS_NO_PT_FLAGS) $<
-+
- EOF
- ;;
- esac
diff --git a/math/octave-devel/files/patch-af b/math/octave-devel/files/patch-af
deleted file mode 100644
index 8fe529297dda..000000000000
--- a/math/octave-devel/files/patch-af
+++ /dev/null
@@ -1,20 +0,0 @@
---- liboctave/lo-ieee.cc.orig Tue Dec 28 22:05:23 1999
-+++ liboctave/lo-ieee.cc Tue Dec 28 22:06:07 1999
-@@ -68,7 +68,7 @@
- #if defined (SCO)
- double tmp = 1.0;
- octave_Inf = 1.0 / (tmp - tmp);
--#elif defined (__alpha__) && ! defined (linux)
-+#elif defined (__alpha__) && ! defined (linux) && ! defined (__FreeBSD__)
- extern unsigned int DINFINITY[2];
- octave_Inf = (*((double *) (DINFINITY)));
- #elif defined (HAVE_INFINITY)
-@@ -89,7 +89,7 @@
-
- #if defined (HAVE_ISNAN)
-
--#if defined (__alpha__) && ! defined (linux)
-+#if defined (__alpha__) && ! defined (linux) && ! defined (__FreeBSD__)
- extern unsigned int DQNAN[2];
- octave_NaN = (*((double *) (DQNAN)));
- #elif defined (HAVE_QUIET_NAN)
diff --git a/math/octave-devel/files/patch-ag b/math/octave-devel/files/patch-ag
deleted file mode 100644
index 91182ab14eb2..000000000000
--- a/math/octave-devel/files/patch-ag
+++ /dev/null
@@ -1,14 +0,0 @@
---- 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