summaryrefslogtreecommitdiff
path: root/lang/afnix/files
diff options
context:
space:
mode:
Diffstat (limited to 'lang/afnix/files')
-rw-r--r--lang/afnix/files/patch-cnf::mak::aleph-rule.mak31
-rw-r--r--lang/afnix/files/patch-src::plt::lib::cclk.cxx22
-rw-r--r--lang/afnix/files/patch-src::plt::lib::cdir.cxx10
3 files changed, 0 insertions, 63 deletions
diff --git a/lang/afnix/files/patch-cnf::mak::aleph-rule.mak b/lang/afnix/files/patch-cnf::mak::aleph-rule.mak
deleted file mode 100644
index ad62af26242a..000000000000
--- a/lang/afnix/files/patch-cnf::mak::aleph-rule.mak
+++ /dev/null
@@ -1,31 +0,0 @@
---- cnf/mak/aleph-rule.mak.orig Thu Mar 8 14:59:08 2001
-+++ cnf/mak/aleph-rule.mak Sat Apr 14 05:43:10 2001
-@@ -62,8 +62,8 @@
- endif
-
- ifeq ($(LKMODE),soname)
--SONAME = $(SOLIB).$(MAJOR).$(MINOR)
--SOVERS = $(SOLIB).$(MAJOR).$(MINOR).$(PATCH)
-+SONAME = $(SOLIB).$(MAJOR)
-+SOVERS = $(SOLIB).$(MAJOR)
- endif
-
- # ----------------------------------------------------------------------------
-@@ -124,17 +124,13 @@
- $(SOLIB) : $(SOVERS)
- @$(MKDIR) $(BLDLIB)
- @$(CP) $(SOVERS) $(BLDLIB)
-- @$(RM) $(BLDLIB)/$(SOLIB)
- @$(RM) $(BLDLIB)/$(SONAME)
-- @$(LN) $(SOVERS) $(BLDLIB)/$(SONAME)
- @$(LN) $(SONAME) $(BLDLIB)/$(SOLIB)
-
- install-solib : $(SOVERS)
- @$(MKDIR) $(LIBDIR)
- @$(CP) $(SOVERS) $(LIBDIR)
-- @$(RM) $(LIBDIR)/$(SONAME)
- @$(RM) $(LIBDIR)/$(SOLIB)
-- @$(LN) $(SOVERS) $(LIBDIR)/$(SONAME)
- @$(LN) $(SONAME) $(LIBDIR)/$(SOLIB)
- .PHONY: install-solib
- endif
diff --git a/lang/afnix/files/patch-src::plt::lib::cclk.cxx b/lang/afnix/files/patch-src::plt::lib::cclk.cxx
deleted file mode 100644
index e680e3173619..000000000000
--- a/lang/afnix/files/patch-src::plt::lib::cclk.cxx
+++ /dev/null
@@ -1,22 +0,0 @@
---- src/plt/lib/cclk.cxx.orig Fri Nov 29 13:10:11 2002
-+++ src/plt/lib/cclk.cxx Fri Nov 29 13:15:05 2002
-@@ -53,7 +53,8 @@
- s_tinfo* c_getlocal (const long tclk) {
- // extract time info
- struct tm* tval;
-- if ((tval = localtime (&tclk)) == NULL) return 0;
-+ time_t t = tclk;
-+ if (t != tclk || (tval = localtime (&t)) == NULL) return 0;
- // fill in the data structure
- s_tinfo* tinfo = new s_tinfo;
- tinfo->d_secs = tval->tm_sec;
-@@ -72,7 +73,8 @@
- s_tinfo* c_getutc (const long tclk) {
- // extract time info
- struct tm* tval;
-- if ((tval = gmtime (&tclk)) == NULL) return 0;
-+ time_t t = tclk;
-+ if (t != tclk || (tval = gmtime (&t)) == NULL) return 0;
- // fill in the data structure
- s_tinfo* tinfo = new s_tinfo;
- tinfo->d_secs = tval->tm_sec;
diff --git a/lang/afnix/files/patch-src::plt::lib::cdir.cxx b/lang/afnix/files/patch-src::plt::lib::cdir.cxx
deleted file mode 100644
index decc8b5ac5a8..000000000000
--- a/lang/afnix/files/patch-src::plt::lib::cdir.cxx
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/plt/lib/cdir.cxx.orig Tue Oct 7 16:39:01 2003
-+++ src/plt/lib/cdir.cxx Tue Oct 7 16:39:21 2003
-@@ -14,6 +14,7 @@
- // - copyright (c) 1999-2003 amaury darsch -
- // ---------------------------------------------------------------------------
-
-+#include <stdio.h>
- #include "cdir.hpp"
- #include "cstr.hpp"
- #include "cdir.hxx"