summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorjoerg <joerg>2006-01-10 12:52:45 +0000
committerjoerg <joerg>2006-01-10 12:52:45 +0000
commit12d446f55bcbc7a4f4e9b45b31fe7b91bce54cd2 (patch)
tree67d0d628a211486182b8190de43351b4eedb8f07 /chat
parentde8d5e1e65396c7600736616aaacbe70c31f45f6 (diff)
downloadpkgsrc-12d446f55bcbc7a4f4e9b45b31fe7b91bce54cd2.tar.gz
va_arg with type shorter than int is invalid and GCC's builtin will
generate an explicit abort() for that code path. Use correct promotion and bump revision.
Diffstat (limited to 'chat')
-rw-r--r--chat/icqlib/Makefile4
-rw-r--r--chat/icqlib/distinfo3
-rw-r--r--chat/icqlib/patches/patch-aa13
3 files changed, 17 insertions, 3 deletions
diff --git a/chat/icqlib/Makefile b/chat/icqlib/Makefile
index 838c42d4b7a..05267111286 100644
--- a/chat/icqlib/Makefile
+++ b/chat/icqlib/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2005/05/22 20:07:42 jlam Exp $
+# $NetBSD: Makefile,v 1.9 2006/01/10 12:52:45 joerg Exp $
DISTNAME= icqlib-1.0.0
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= chat
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=icqlib/}
diff --git a/chat/icqlib/distinfo b/chat/icqlib/distinfo
index 59491fee355..8384a03d770 100644
--- a/chat/icqlib/distinfo
+++ b/chat/icqlib/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2005/02/23 15:59:11 agc Exp $
+$NetBSD: distinfo,v 1.4 2006/01/10 12:52:45 joerg Exp $
SHA1 (icqlib-1.0.0.tar.gz) = dc0e2c2f471294b9289debf106b78aa2a4dbba05
RMD160 (icqlib-1.0.0.tar.gz) = bd3397b9d86d7dfc1a6cc82d405901a3cb46f309
Size (icqlib-1.0.0.tar.gz) = 249961 bytes
+SHA1 (patch-aa) = d41fe17f03ede74396c6e1363e141de01be0302f
diff --git a/chat/icqlib/patches/patch-aa b/chat/icqlib/patches/patch-aa
new file mode 100644
index 00000000000..5c831ac604d
--- /dev/null
+++ b/chat/icqlib/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2006/01/10 12:52:45 joerg Exp $
+
+--- icqlib/queue.c.orig 2006-01-10 10:48:20.000000000 +0000
++++ icqlib/queue.c
+@@ -127,7 +127,7 @@ void icq_UDPQueueFree(ICQLINK *link)
+
+ int icq_UDPQueueFindSeq(void *p, va_list data)
+ {
+- WORD seq=va_arg(data, WORD);
++ WORD seq=va_arg(data, unsigned int);
+ return icq_PacketReadUDPOutSeq1(((icq_UDPQueueItem *)p)->pack) == seq;
+ }
+