pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/libirman update libirman to 0.4.1bnb6



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ea556449de39
branches:  trunk
changeset: 517701:ea556449de39
user:      abs <abs%pkgsrc.org@localhost>
date:      Sat Aug 19 22:52:23 2006 +0000

description:
update libirman to 0.4.1bnb6
Avoid 'invalid lvalue in assignment' with gcc4

diffstat:

 sysutils/libirman/Makefile         |   4 ++--
 sysutils/libirman/distinfo         |   3 ++-
 sysutils/libirman/patches/patch-af |  13 +++++++++++++
 3 files changed, 17 insertions(+), 3 deletions(-)

diffs (46 lines):

diff -r a65c8d23fb81 -r ea556449de39 sysutils/libirman/Makefile
--- a/sysutils/libirman/Makefile        Sat Aug 19 20:47:29 2006 +0000
+++ b/sysutils/libirman/Makefile        Sat Aug 19 22:52:23 2006 +0000
@@ -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 -r a65c8d23fb81 -r ea556449de39 sysutils/libirman/distinfo
--- a/sysutils/libirman/distinfo        Sat Aug 19 20:47:29 2006 +0000
+++ b/sysutils/libirman/distinfo        Sat Aug 19 22:52:23 2006 +0000
@@ -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-ac) = 94bf4bbbadc36ff47ded256c37eb86b36a2ad1d9
 SHA1 (patch-ad) = 4a4cef60aa053a2781bc48d9c268cc10ae9654cf
 SHA1 (patch-ae) = a5ec71dd27d0d9033ab6464a28146c7fe6ca8d0e
+SHA1 (patch-af) = 9e2da7f5fa175a69b0ddf2c681d574cd656bc662
diff -r a65c8d23fb81 -r ea556449de39 sysutils/libirman/patches/patch-af
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/libirman/patches/patch-af        Sat Aug 19 22:52:23 2006 +0000
@@ -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;
+ }



Home | Main Index | Thread Index | Old Index