summaryrefslogtreecommitdiff
path: root/mail/coolmail
diff options
context:
space:
mode:
authorrillig <rillig>2005-10-22 17:56:31 +0000
committerrillig <rillig>2005-10-22 17:56:31 +0000
commita9c3c45ccbc48fec54591042d88cfa9ff59ef414 (patch)
tree9ab8a347145d8980a02678b8cecbe3f6b0f4fe53 /mail/coolmail
parentab1d1622995339b3102d20089eb01aca6f27f8f6 (diff)
downloadpkgsrc-a9c3c45ccbc48fec54591042d88cfa9ff59ef414.tar.gz
Added a patch that prevents the IRIX build from failing. Bumped
PKGREVISION.
Diffstat (limited to 'mail/coolmail')
-rw-r--r--mail/coolmail/Makefile3
-rw-r--r--mail/coolmail/distinfo3
-rw-r--r--mail/coolmail/patches/patch-ac24
3 files changed, 28 insertions, 2 deletions
diff --git a/mail/coolmail/Makefile b/mail/coolmail/Makefile
index b7c07a2707b..4925fcf01c0 100644
--- a/mail/coolmail/Makefile
+++ b/mail/coolmail/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2005/10/22 16:17:14 rillig Exp $
+# $NetBSD: Makefile,v 1.8 2005/10/22 17:56:31 rillig Exp $
DISTNAME= coolmail-1.3
+PKGREVISION= 1
CATEGORIES= mail x11
MASTER_SITES= ${MASTER_SITE_SUNSITE:=system/mail/biffs/}
EXTRACT_SUFX= .tgz
diff --git a/mail/coolmail/distinfo b/mail/coolmail/distinfo
index 452e26f1cfd..69c139aa824 100644
--- a/mail/coolmail/distinfo
+++ b/mail/coolmail/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.5 2005/10/22 16:17:14 rillig Exp $
+$NetBSD: distinfo,v 1.6 2005/10/22 17:56:31 rillig Exp $
SHA1 (coolmail-1.3.tgz) = 7b8dccf16f575827a595f1025294dfc66f00a6dc
RMD160 (coolmail-1.3.tgz) = e23a8e8a465d700163393e70ebed60870ddcbc95
Size (coolmail-1.3.tgz) = 26809 bytes
SHA1 (patch-aa) = 3baa02ca2f01c67724c1e01c095c0fbe65038df7
SHA1 (patch-ab) = 35879a8f39e83e47b1598b761adcfa412d6b3104
+SHA1 (patch-ac) = 1054bda16101047024e2f6811034cfdc4d340a66
diff --git a/mail/coolmail/patches/patch-ac b/mail/coolmail/patches/patch-ac
new file mode 100644
index 00000000000..7e653733a1c
--- /dev/null
+++ b/mail/coolmail/patches/patch-ac
@@ -0,0 +1,24 @@
+$NetBSD: patch-ac,v 1.1 2005/10/22 17:56:31 rillig Exp $
+
+The IRIX C compiler does not allow non-constant initializers for struct
+members.
+
+--- system/X11/display_list.c.orig Thu Jan 11 19:14:30 1996
++++ system/X11/display_list.c Sat Oct 22 19:49:39 2005
+@@ -149,7 +149,7 @@ void disp_config(void)
+ XtResource mailfile = {"inbox", "Inbox", XtRString,
+ sizeof(str), 0, XtRString, mailfile_str};
+ XtResource monoflag = {"monochrome", "Monochrome", XtRBoolean,
+- sizeof(mono), 0, XtRBoolean, &mono};
++ sizeof(mono), 0, XtRBoolean, NULL};
+ XtResource frmcount = {"frameCount", "FrameCount", XtRInt,
+ sizeof(frames), 0, XtRInt, &frames};
+
+@@ -164,6 +164,7 @@ void disp_config(void)
+ strcpy(command_str, str);
+ XtGetApplicationResources(toplevel, &str, &mailfile, 1, NULL, 0);
+ strcpy(mailfile_str, str);
++ monoflag.default_addr = &mono;
+ XtGetApplicationResources(toplevel, &mono, &monoflag, 1, NULL, 0);
+ if (mono) color_mode = 0;
+