summaryrefslogtreecommitdiff
path: root/math/ss/files/patch-ad
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:30:25 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:30:25 +0000
commit58523e38bed36a77db3619b767435e89ad6bfd3b (patch)
tree921a78b53bb8bf1d3569bb70ac9eb127937f6a03 /math/ss/files/patch-ad
parentRemoved cruft introduced in the last commit (diff)
remove unmaintained expired ports from math
2011-05-01 math/fudgit: Upstream disapear and distfile is no more available 2011-05-01 math/kaskade: Upstream disapear and distfile is no more available 2011-05-01 math/qscanplot: Upstream disapear and distfile is no more available 2011-05-01 math/rpc: Upstream disapear and distfile is no more available 2011-05-01 math/ss: Upstream disapear and distfile is no more available 2011-05-01 math/wmcalc: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273453
Diffstat (limited to 'math/ss/files/patch-ad')
-rw-r--r--math/ss/files/patch-ad29
1 files changed, 0 insertions, 29 deletions
diff --git a/math/ss/files/patch-ad b/math/ss/files/patch-ad
deleted file mode 100644
index 0f938120c363..000000000000
--- a/math/ss/files/patch-ad
+++ /dev/null
@@ -1,29 +0,0 @@
---- interp.c.orig Mon Feb 7 17:41:53 1994
-+++ interp.c Fri Mar 10 13:31:32 2000
-@@ -490,7 +490,7 @@
- mdays[1] = 28 + (yr%4 == 0);
-
- if (mo < 1 || mo > 12 || day < 1 || day > mdays[--mo] ||
-- yr > 1999 || yr < 1970) {
-+ yr > 2099 || yr < 1970) {
- error("@dts: invalid argument");
- cellerror = CELLERROR;
- return(0.0);
-@@ -560,7 +560,7 @@
- #if defined(__GO32__) || defined(__NeXT__)
- time_t time (time_t *) ;
- #else
--# ifndef OSF1
-+# if !defined(OSF1) && !defined(__FreeBSD__)
- long time();
- # endif
- #endif
-@@ -571,7 +571,7 @@
- long tloc;
-
- if (which == NOW) {
--#if defined(__GO32__) || defined(__NeXT__)
-+#if defined(__GO32__) || defined(__NeXT__) || defined(__FreeBSD__)
- return (double) time ((time_t *) NULL) ;
- #else
- return (double) time((long *)0);