summaryrefslogtreecommitdiff
path: root/net/spegla/patches
diff options
context:
space:
mode:
authorfrueauf <frueauf>1999-02-26 11:27:18 +0000
committerfrueauf <frueauf>1999-02-26 11:27:18 +0000
commit27d688bd7a813de33444220bd723e46e775dbad0 (patch)
treebd398f1ad909125534edfac6216e9d43ca9d8b2d /net/spegla/patches
parent956fd3cb501903f16dc0a5456e03ec1fbd14fc81 (diff)
downloadpkgsrc-27d688bd7a813de33444220bd723e46e775dbad0.tar.gz
Initial addition of spegla-1.04, a mirror program for FTP sites (written in C).
Provided in pr 7018 by Jens A Nilsson with some modifications by myself to make it work with current (sys/errno.h vs errno.h).
Diffstat (limited to 'net/spegla/patches')
-rw-r--r--net/spegla/patches/patch-aa15
-rw-r--r--net/spegla/patches/patch-ab20
-rw-r--r--net/spegla/patches/patch-ac11
3 files changed, 46 insertions, 0 deletions
diff --git a/net/spegla/patches/patch-aa b/net/spegla/patches/patch-aa
new file mode 100644
index 00000000000..a15ac2fbcab
--- /dev/null
+++ b/net/spegla/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/02/26 11:27:19 frueauf Exp $
+
+--- jftp.c-orig Sun Feb 7 11:46:11 1999
++++ jftp.c Fri Feb 26 12:07:15 1999
+@@ -28,9 +28,9 @@
+ /*$Id: patch-aa,v 1.1.1.1 1999/02/26 11:27:19 frueauf Exp $*/
+ #include <sys/types.h>
+ #include <sys/socket.h>
+-#include <sys/errno.h>
+ #include <netinet/in.h>
+ #include <arpa/inet.h>
++#include <errno.h>
+ #include <setjmp.h>
+ #include <signal.h>
+ #include <stdio.h>
diff --git a/net/spegla/patches/patch-ab b/net/spegla/patches/patch-ab
new file mode 100644
index 00000000000..910e91d1f5c
--- /dev/null
+++ b/net/spegla/patches/patch-ab
@@ -0,0 +1,20 @@
+$NetBSD: patch-ab,v 1.1.1.1 1999/02/26 11:27:20 frueauf Exp $
+
+--- spegla.c-orig Tue Feb 9 23:37:42 1999
++++ spegla.c Fri Feb 26 12:09:22 1999
+@@ -27,7 +27,6 @@
+
+ /*$Id: patch-ab,v 1.1.1.1 1999/02/26 11:27:20 frueauf Exp $*/
+
+-#include <sys/errno.h>
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <sys/param.h>
+@@ -46,6 +45,7 @@
+ # include <errno.h>
+ #endif
+
++#include <errno.h>
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <stdarg.h>
diff --git a/net/spegla/patches/patch-ac b/net/spegla/patches/patch-ac
new file mode 100644
index 00000000000..fd365550762
--- /dev/null
+++ b/net/spegla/patches/patch-ac
@@ -0,0 +1,11 @@
+$NetBSD: patch-ac,v 1.1.1.1 1999/02/26 11:27:20 frueauf Exp $
+
+--- Makefile-orig Sun Feb 7 22:49:59 1999
++++ Makefile Fri Feb 26 12:11:47 1999
+@@ -12,4 +12,6 @@
+ CFLAGS+= -Wall
+ LDADD+= -lcompat
+
++MANINSTALL= catinstall maninstall
++
+ .include <bsd.prog.mk>