summaryrefslogtreecommitdiff
path: root/news/xrn
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-01-02 23:33:41 +0000
committerjoerg <joerg@pkgsrc.org>2006-01-02 23:33:41 +0000
commit4ae2f06e66c7f574261405c679179d2837cbafd5 (patch)
treefcc4ae668dbbb1ad6277fb5a39a5f871d663f87d /news/xrn
parent25ae7d370355ec51e976c57fb6a3bd89f4ac46b4 (diff)
downloadpkgsrc-4ae2f06e66c7f574261405c679179d2837cbafd5.tar.gz
Fix errno.
Diffstat (limited to 'news/xrn')
-rw-r--r--news/xrn/distinfo7
-rw-r--r--news/xrn/patches/patch-ac13
-rw-r--r--news/xrn/patches/patch-ad20
-rw-r--r--news/xrn/patches/patch-ae12
-rw-r--r--news/xrn/patches/patch-af13
-rw-r--r--news/xrn/patches/patch-ag13
6 files changed, 77 insertions, 1 deletions
diff --git a/news/xrn/distinfo b/news/xrn/distinfo
index 43df06ee5d2..8e49c7bb008 100644
--- a/news/xrn/distinfo
+++ b/news/xrn/distinfo
@@ -1,7 +1,12 @@
-$NetBSD: distinfo,v 1.3 2005/02/24 12:19:56 agc Exp $
+$NetBSD: distinfo,v 1.4 2006/01/02 23:33:41 joerg Exp $
SHA1 (xrn/9.01.tgz) = a560d07629efaa907ae01527192dd474e11555ad
RMD160 (xrn/9.01.tgz) = c98d26e17fd8c511d9272378a54943ef9a453d3a
Size (xrn/9.01.tgz) = 357098 bytes
SHA1 (patch-aa) = 5560da41c2ef1d077fcc696f954bca7528d577af
SHA1 (patch-ab) = 8e44803fcbffc0985a68479bf8f177793c1d857f
+SHA1 (patch-ac) = ffbc0e5d529add2fae06c14d93d539fb15a13c8c
+SHA1 (patch-ad) = c434a8159e6b3236c7e849f13e8916f3e416d2cc
+SHA1 (patch-ae) = 3a1eef86f89acaa3b0bb6a78bfbd8d7c4be969d2
+SHA1 (patch-af) = 849b86cac73328cf2a773bc289f97c3e21456f71
+SHA1 (patch-ag) = f42c743a45c68b7702494399dbf40c3ac9cefd13
diff --git a/news/xrn/patches/patch-ac b/news/xrn/patches/patch-ac
new file mode 100644
index 00000000000..2b62fb44313
--- /dev/null
+++ b/news/xrn/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1 2006/01/02 23:33:41 joerg Exp $
+
+--- error_hnds.h.orig 2006-01-02 23:27:55.000000000 +0000
++++ error_hnds.h
+@@ -54,7 +54,7 @@ extern void ehInstallErrorHandlers _ARGU
+ /* install the signal handlers */
+ extern void ehInstallSignalHandlers _ARGUMENTS((void));
+
+-#if !defined(__GNU_LIBRARY__) && !defined(__NetBSD__) && !defined(__FreeBSD__)
++#if !defined(__GNU_LIBRARY__) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__)
+ extern int errno, sys_nerr;
+ extern char *sys_errlist[];
+ #endif
diff --git a/news/xrn/patches/patch-ad b/news/xrn/patches/patch-ad
new file mode 100644
index 00000000000..8495e006fd0
--- /dev/null
+++ b/news/xrn/patches/patch-ad
@@ -0,0 +1,20 @@
+$NetBSD: patch-ad,v 1.1 2006/01/02 23:33:41 joerg Exp $
+
+--- refile.c.orig 2006-01-02 23:28:48.000000000 +0000
++++ refile.c
+@@ -125,7 +125,6 @@ int MHrefile(folder, artfile)
+ char newfolders[512];
+ char msg[512];
+ struct stat st;
+- extern int errno;
+
+
+ p = getenv("HOME");
+@@ -202,7 +201,6 @@ int RMAILrefile(fullpath, folder, artfil
+ {
+ char msg[512];
+ struct stat st;
+- extern int errno;
+ FILE * fp;
+ int artfd, rv, n;
+
diff --git a/news/xrn/patches/patch-ae b/news/xrn/patches/patch-ae
new file mode 100644
index 00000000000..6001e7be9dd
--- /dev/null
+++ b/news/xrn/patches/patch-ae
@@ -0,0 +1,12 @@
+$NetBSD: patch-ae,v 1.1 2006/01/02 23:33:41 joerg Exp $
+
+--- internals.c.orig 2006-01-02 23:29:30.000000000 +0000
++++ internals.c
+@@ -140,7 +140,6 @@ void checkLock()
+ char myhost[64];
+ int pid;
+ FILE *fp;
+- extern int errno;
+
+ if (!buffer) {
+ /* silently ignore this condition */
diff --git a/news/xrn/patches/patch-af b/news/xrn/patches/patch-af
new file mode 100644
index 00000000000..ac3b5ac02f8
--- /dev/null
+++ b/news/xrn/patches/patch-af
@@ -0,0 +1,13 @@
+$NetBSD: patch-af,v 1.1 2006/01/02 23:33:41 joerg Exp $
+
+--- save.c.orig 2006-01-02 23:30:05.000000000 +0000
++++ save.c
+@@ -50,8 +50,6 @@ static char XRNrcsid[] = "$Id: save.c,v
+ #include "refile.h"
+ #include "file_cache.h"
+
+-extern int errno;
+-
+ #define BUFFER_SIZE 1024
+
+ #ifndef S_ISDIR
diff --git a/news/xrn/patches/patch-ag b/news/xrn/patches/patch-ag
new file mode 100644
index 00000000000..0a4477c3ce3
--- /dev/null
+++ b/news/xrn/patches/patch-ag
@@ -0,0 +1,13 @@
+$NetBSD: patch-ag,v 1.1 2006/01/02 23:33:41 joerg Exp $
+
+--- server.c.orig 2006-01-02 23:30:35.000000000 +0000
++++ server.c
+@@ -65,8 +65,6 @@ static char XRNrcsid[] = "$Id: server.c,
+ #include <vfork.h>
+ #endif
+
+-extern int errno;
+-
+ #define BUFFER_SIZE 1024
+ /* This constant must be a 2^x times BUFFER_SIZE, for some x. */
+ #define MAX_BUFFER_SIZE (8*BUFFER_SIZE)