summaryrefslogtreecommitdiff
path: root/sysutils/libirman
diff options
context:
space:
mode:
authorabs <abs>2006-08-19 22:52:23 +0000
committerabs <abs>2006-08-19 22:52:23 +0000
commit5ebfe5f87ec986105e02559a4679cb23db865383 (patch)
tree2364dec190d3be48e079d02e5fb1ffc72f3ccbbf /sysutils/libirman
parentf04dccefdd64a3ba9e8ba200084b95316258c0c7 (diff)
downloadpkgsrc-5ebfe5f87ec986105e02559a4679cb23db865383.tar.gz
update libirman to 0.4.1bnb6
Avoid 'invalid lvalue in assignment' with gcc4
Diffstat (limited to 'sysutils/libirman')
-rw-r--r--sysutils/libirman/Makefile4
-rw-r--r--sysutils/libirman/distinfo3
-rw-r--r--sysutils/libirman/patches/patch-af13
3 files changed, 17 insertions, 3 deletions
diff --git a/sysutils/libirman/Makefile b/sysutils/libirman/Makefile
index abdd9f7a8fa..18c1b88d2a7 100644
--- a/sysutils/libirman/Makefile
+++ b/sysutils/libirman/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.12 2005/12/29 06:22:18 jlam Exp $
+# $NetBSD: Makefile,v 1.13 2006/08/19 22:52:23 abs Exp $
#
DISTNAME= libirman-0.4.1b
PKGNAME= ${DISTNAME:S/b$/.2/}
-PKGREVISION= 5
+PKGREVISION= 6
CATEGORIES= sysutils
MASTER_SITES= http://www.evation.com/libirman/
diff --git a/sysutils/libirman/distinfo b/sysutils/libirman/distinfo
index d43523b6d3e..cb87fce4160 100644
--- a/sysutils/libirman/distinfo
+++ b/sysutils/libirman/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2005/02/24 13:40:54 agc Exp $
+$NetBSD: distinfo,v 1.7 2006/08/19 22:52:23 abs Exp $
SHA1 (libirman-0.4.1b.tar.gz) = 739e7cbb4c7e0af59fd244e3d2ed73b97905849a
RMD160 (libirman-0.4.1b.tar.gz) = 2121e085006079c02c3c84a9b66434c9ed882ec5
@@ -8,3 +8,4 @@ SHA1 (patch-ab) = b16e235fbfe581ee1a2d4406be8911faa2d047fc
SHA1 (patch-ac) = 94bf4bbbadc36ff47ded256c37eb86b36a2ad1d9
SHA1 (patch-ad) = 4a4cef60aa053a2781bc48d9c268cc10ae9654cf
SHA1 (patch-ae) = a5ec71dd27d0d9033ab6464a28146c7fe6ca8d0e
+SHA1 (patch-af) = 9e2da7f5fa175a69b0ddf2c681d574cd656bc662
diff --git a/sysutils/libirman/patches/patch-af b/sysutils/libirman/patches/patch-af
new file mode 100644
index 00000000000..de15573b90f
--- /dev/null
+++ b/sysutils/libirman/patches/patch-af
@@ -0,0 +1,13 @@
+$NetBSD: patch-af,v 1.1 2006/08/19 22:52:23 abs Exp $
+
+--- chunk.c.orig 1999-02-18 11:14:59.000000000 +0000
++++ chunk.c
+@@ -122,7 +122,7 @@ void *ch_malloc(size_t numbytes, chunk_t
+
+ ptr = ch->top;
+ ch->free -= numbytes;
+- (char *)ch->top += numbytes;
++ ch->top = (char *)ch->top + numbytes;
+
+ return ptr;
+ }