summaryrefslogtreecommitdiff
path: root/net-p2p/libfreenet/files
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-10-02 20:55:58 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-10-02 20:55:58 +0000
commit1cf501d6f87b43d3b20cdc1df1942dccff3796bd (patch)
tree888348323662d1fceb365259a7bc1b95e8e8d3f1 /net-p2p/libfreenet/files
parent. s:NO_CDROM:RESTRICTED: as neither the distfiles nor the packages should (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_9_0'.release/4.9.0
Notes
Notes: svn path=/head/; revision=90063 svn path=/tags/RELEASE_4_9_0/; revision=90064; tag=release/4.9.0
Diffstat (limited to 'net-p2p/libfreenet/files')
-rw-r--r--net-p2p/libfreenet/files/patch-client.c12
-rw-r--r--net-p2p/libfreenet/files/patch-client_util.c28
-rw-r--r--net-p2p/libfreenet/files/patch-protocol.c22
-rw-r--r--net-p2p/libfreenet/files/patch-testclient.c10
-rw-r--r--net-p2p/libfreenet/files/patch-testserver.c16
5 files changed, 0 insertions, 88 deletions
diff --git a/net-p2p/libfreenet/files/patch-client.c b/net-p2p/libfreenet/files/patch-client.c
deleted file mode 100644
index ba0702f37af3..000000000000
--- a/net-p2p/libfreenet/files/patch-client.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- client.c.orig Wed Jun 13 19:04:37 2001
-+++ client.c Sun Dec 30 14:35:28 2001
-@@ -15,7 +15,9 @@
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-+#ifdef HAVE_MALLOC_H
- #include <malloc.h>
-+#endif
- #include <string.h>
- #include <openssl/dsa.h>
-
diff --git a/net-p2p/libfreenet/files/patch-client_util.c b/net-p2p/libfreenet/files/patch-client_util.c
deleted file mode 100644
index 3fd891db3122..000000000000
--- a/net-p2p/libfreenet/files/patch-client_util.c
+++ /dev/null
@@ -1,28 +0,0 @@
---- client_util.c.orig Wed Mar 28 03:27:38 2001
-+++ client_util.c Fri Mar 15 07:54:32 2002
-@@ -37,7 +37,7 @@
- #endif
-
-
--long blstr2time(char *baseline);
-+time_t blstr2time(char *baseline);
- int timediff();
-
-
-@@ -60,13 +60,14 @@
-
- int timediff ()
- {
-+ struct tm *tmp;
- long t = time(NULL);
-
- /* We are calling localtime here for its side-effect of setting
- the timezone global appropriately. I have no proof that this
- even happens on cygwin. Please, just let me die. */
-- localtime(&t);
-- return (FN_TIMEZONE / 3600);
-+ tmp = localtime(&t);
-+ return (tmp->tm_gmtoff / 3600);
- }
-
-
diff --git a/net-p2p/libfreenet/files/patch-protocol.c b/net-p2p/libfreenet/files/patch-protocol.c
deleted file mode 100644
index 66628daab52d..000000000000
--- a/net-p2p/libfreenet/files/patch-protocol.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- protocol.c.orig Wed Jun 13 19:03:11 2001
-+++ protocol.c Sun Dec 30 14:37:45 2001
-@@ -16,7 +16,11 @@
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
- #include <stdio.h>
-+#ifdef HAVE_MALLOC_H
- #include <malloc.h>
-+#endif
-+#include <sys/types.h>
-+#include <netinet/in.h>
- #include <sys/socket.h>
- #include <netdb.h>
- #include <string.h>
-@@ -24,7 +28,6 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <unistd.h>
--#include <sys/types.h>
- #include <ctype.h>
- #include <time.h>
-
diff --git a/net-p2p/libfreenet/files/patch-testclient.c b/net-p2p/libfreenet/files/patch-testclient.c
deleted file mode 100644
index 08a080bc7ce6..000000000000
--- a/net-p2p/libfreenet/files/patch-testclient.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- testclient.c.orig Sat Mar 31 15:17:15 2001
-+++ testclient.c Sat Mar 31 15:17:24 2001
-@@ -20,7 +20,6 @@
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
--#include <getopt.h>
-
- #include "protocol.h"
- #include "client.h"
diff --git a/net-p2p/libfreenet/files/patch-testserver.c b/net-p2p/libfreenet/files/patch-testserver.c
deleted file mode 100644
index 9df4920aefe2..000000000000
--- a/net-p2p/libfreenet/files/patch-testserver.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- testserver.c.orig Wed Jun 13 19:05:19 2001
-+++ testserver.c Sun Dec 30 14:36:07 2001
-@@ -15,10 +15,13 @@
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-+#ifdef HAVE_MALLOC_H
- #include <malloc.h>
-+#endif
- #include <string.h>
- #include <unistd.h>
- #include <stdlib.h>
-+#include <netinet/in.h>
- #include <sys/socket.h>
-
-