summaryrefslogtreecommitdiff
path: root/news/knews/patches
diff options
context:
space:
mode:
authorhubertf <hubertf>1997-12-17 23:40:56 +0000
committerhubertf <hubertf>1997-12-17 23:40:56 +0000
commit8598eb9eed161ed0c70c5e2262eb6831e0869575 (patch)
tree365cf64592f907d8e995cb5ffaf1e56eb3f85182 /news/knews/patches
parent83ce573a29ab585ab185a61a7ab5e7d0bd819c7f (diff)
downloadpkgsrc-8598eb9eed161ed0c70c5e2262eb6831e0869575.tar.gz
A X11 newsreader with support for threading and MIME
closes PR 4611 by Matthias Scheler <tron@lyssa.owl.de>.
Diffstat (limited to 'news/knews/patches')
-rw-r--r--news/knews/patches/patch-aa20
-rw-r--r--news/knews/patches/patch-ab10
-rw-r--r--news/knews/patches/patch-ac14
-rw-r--r--news/knews/patches/patch-ad10
4 files changed, 54 insertions, 0 deletions
diff --git a/news/knews/patches/patch-aa b/news/knews/patches/patch-aa
new file mode 100644
index 00000000000..3200889b8a2
--- /dev/null
+++ b/news/knews/patches/patch-aa
@@ -0,0 +1,20 @@
+--- configure.h.orig Sun Aug 18 14:11:26 1996
++++ configure.h Sun Nov 30 16:33:59 1997
+@@ -14,7 +14,7 @@
+ *
+ * If you don't have sendmail, use /bin/false :-).
+ */
+-/* #define MAIL_COMMAND "/usr/sbin/sendmail -t" */
++#define MAIL_COMMAND "/usr/sbin/sendmail -t"
+ /* #define MAIL_COMMAND "/usr/lib/sendmail -t" */
+
+
+@@ -42,7 +42,7 @@
+ /* #define DOMAIN_NAME "/your/file/here" */
+ /* #define DOMAIN_NAME "your_domain_here" */
+
+-#define DOMAIN_HACK 1
++#define DOMAIN_HACK 0
+
+
+
diff --git a/news/knews/patches/patch-ab b/news/knews/patches/patch-ab
new file mode 100644
index 00000000000..4a42c0c8683
--- /dev/null
+++ b/news/knews/patches/patch-ab
@@ -0,0 +1,10 @@
+--- src/global.h.orig Tue Aug 13 16:30:33 1996
++++ src/global.h Sun Nov 30 18:32:48 1997
+@@ -109,6 +109,7 @@
+ long no_unread;
+ long first_art;
+ long last_art;
++ long active_last_art;
+ ART_LIST_NODE *read_arts;
+ long disp;
+ char subscribed;
diff --git a/news/knews/patches/patch-ac b/news/knews/patches/patch-ac
new file mode 100644
index 00000000000..a4cd5fe7aa9
--- /dev/null
+++ b/news/knews/patches/patch-ac
@@ -0,0 +1,14 @@
+--- src/procs.c.orig Fri Aug 2 12:52:44 1996
++++ src/procs.c Sun Nov 30 18:32:48 1997
+@@ -75,7 +75,10 @@
+ (ART_LIST_NODE *)XtMalloc(sizeof *temp);
+ temp->next = NULL;
+ temp->first = 1;
+- temp->last = global.curr_group->last_art;
++ temp->last = (global.curr_group->active_last_art >
++ global.curr_group->last_art ) ?
++ global.curr_group->active_last_art :
++ global.curr_group->last_art;
+
+ if (res_process_xrefs())
+ for (art = get_articles(main_thr) ; art ; art = art->next)
diff --git a/news/knews/patches/patch-ad b/news/knews/patches/patch-ad
new file mode 100644
index 00000000000..6652f050936
--- /dev/null
+++ b/news/knews/patches/patch-ad
@@ -0,0 +1,10 @@
+--- src/thread.c.orig Fri Jul 26 11:59:43 1996
++++ src/thread.c Sun Nov 30 18:32:48 1997
+@@ -1120,6 +1120,7 @@
+ if (!reply || atoi(reply) != NNTP_OK_GROUP)
+ return reply;
+
++ global.curr_group->active_last_art = global.curr_group->last_art;
+ sscanf(reply, "%*d%ld%ld%ld",
+ &main_thr->total,
+ &global.curr_group->first_art,