summaryrefslogtreecommitdiff
path: root/news/pan2/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-22 00:58:50 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-22 00:58:50 +0000
commite4f3abb2634036cdd7ab5c5d68beff729c4a2eb8 (patch)
tree1c3d2728a907ab519023c784e2b32bd01eb04b17 /news/pan2/files
parentChecksum changed; distfile updated. (diff)
* Update to 0.13.94
* Add a patch to prevent a crash under -CURRENT [1] * Convert to new GNOME infrastructure Submitted by: Pav Lucistnik <pav@oook.cz> [1]
Notes
Notes: svn path=/head/; revision=79429
Diffstat (limited to '')
-rw-r--r--news/pan2/files/patch-Makefile.in12
-rw-r--r--news/pan2/files/patch-pan_base_group.c11
-rw-r--r--news/pan2/files/patch-pan_sockets.c25
3 files changed, 17 insertions, 31 deletions
diff --git a/news/pan2/files/patch-Makefile.in b/news/pan2/files/patch-Makefile.in
index 8354b60acb19..80edafd14ff3 100644
--- a/news/pan2/files/patch-Makefile.in
+++ b/news/pan2/files/patch-Makefile.in
@@ -1,9 +1,9 @@
---- Makefile.in.orig Thu Jan 16 22:33:02 2003
-+++ Makefile.in Thu Jan 16 22:33:48 2003
-@@ -110,7 +110,7 @@
- XML_CFLAGS = @XML_CFLAGS@
- XML_LIBS = @XML_LIBS@
-
+--- Makefile.in.orig Mon Apr 21 20:48:52 2003
++++ Makefile.in Mon Apr 21 20:49:25 2003
+@@ -128,7 +128,7 @@
+ am__include = @am__include@
+ am__quote = @am__quote@
+ install_sh = @install_sh@
-SUBDIRS = po gmime pan docs tests
+SUBDIRS = po gmime pan docs
diff --git a/news/pan2/files/patch-pan_base_group.c b/news/pan2/files/patch-pan_base_group.c
new file mode 100644
index 000000000000..02880cdbbc2a
--- /dev/null
+++ b/news/pan2/files/patch-pan_base_group.c
@@ -0,0 +1,11 @@
+--- pan/base/group.c.orig Mon Apr 21 20:52:11 2003
++++ pan/base/group.c Mon Apr 21 20:52:32 2003
+@@ -206,7 +206,7 @@
+ groups_set_subscribed (Group ** groups, gint qty, gboolean subscribed)
+ {
+ Group ** changed;
+- Server * server;
++ Server * server = NULL;
+ const ServerGroupsType type = SERVER_GROUPS_SUBSCRIBED|SERVER_GROUPS_UNSUBSCRIBED;
+ int changed_qty = 0;
+ int i;
diff --git a/news/pan2/files/patch-pan_sockets.c b/news/pan2/files/patch-pan_sockets.c
deleted file mode 100644
index 16fe3c356dc7..000000000000
--- a/news/pan2/files/patch-pan_sockets.c
+++ /dev/null
@@ -1,25 +0,0 @@
---- pan/sockets.c.orig Thu Feb 27 13:15:49 2003
-+++ pan/sockets.c Thu Feb 27 13:24:02 2003
-@@ -86,6 +86,9 @@
- int port)
- {
- PanSocket * sock;
-+#ifdef SIGPIPE
-+ struct sigaction sv;
-+#endif
-
- /* sanity clause */
- g_return_val_if_fail (is_nonempty_string (server_name), NULL);
-@@ -94,7 +97,11 @@
-
- /* needed on Unix */
- # ifdef SIGPIPE
-- sigignore (SIGPIPE);
-+ memset(&sv, 0, sizeof(sv));
-+ sv.sa_handler = SIG_IGN;
-+ sigemptyset(&sv.sa_mask);
-+ sv.sa_flags = SA_RESTART;
-+ sigaction(SIGPIPE, &sv, NULL);
- # endif
-
- /* create the socket */