pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/archivers/dar Do not convert char* to int, which may c...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d1a659a8ed2b
branches:  trunk
changeset: 512358:d1a659a8ed2b
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Sun May 07 05:01:29 2006 +0000

description:
Do not convert char* to int, which may cause an error on 64-bit platforms.
Bump PKGREVISION.

diffstat:

 archivers/dar/Makefile         |   4 ++--
 archivers/dar/distinfo         |   4 ++--
 archivers/dar/patches/patch-ac |  19 ++++++++++++++-----
 3 files changed, 18 insertions(+), 9 deletions(-)

diffs (58 lines):

diff -r 2c36d0eef9e1 -r d1a659a8ed2b archivers/dar/Makefile
--- a/archivers/dar/Makefile    Sun May 07 03:20:22 2006 +0000
+++ b/archivers/dar/Makefile    Sun May 07 05:01:29 2006 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.19 2006/03/04 21:28:52 jlam Exp $
+# $NetBSD: Makefile,v 1.20 2006/05/07 05:01:29 minskim Exp $
 
 DISTNAME=      dar-2.2.2
-PKGREVISION=   2
+PKGREVISION=   3
 CATEGORIES=    archivers sysutils
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=dar/}
 
diff -r 2c36d0eef9e1 -r d1a659a8ed2b archivers/dar/distinfo
--- a/archivers/dar/distinfo    Sun May 07 03:20:22 2006 +0000
+++ b/archivers/dar/distinfo    Sun May 07 05:01:29 2006 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.10 2005/09/09 11:45:40 rillig Exp $
+$NetBSD: distinfo,v 1.11 2006/05/07 05:01:29 minskim Exp $
 
 SHA1 (dar-2.2.2.tar.gz) = b362ad3e192c7239a13a314d0f4750bc080b62d8
 RMD160 (dar-2.2.2.tar.gz) = 79dc8ac63d52af64774d982a388027f60707b48e
 Size (dar-2.2.2.tar.gz) = 1067171 bytes
 SHA1 (patch-aa) = 6f07f2bf85194cdad58d99c7cafd85e3b2c06031
 SHA1 (patch-ab) = 1d8fb3bcd9c0d6a07cb6413d0b94453264f3d499
-SHA1 (patch-ac) = 0e09b6ac750900ed04359ceb753194e25275be00
+SHA1 (patch-ac) = ad585ac54bd1aef75114e2ad4932eb4b9cd79172
diff -r 2c36d0eef9e1 -r d1a659a8ed2b archivers/dar/patches/patch-ac
--- a/archivers/dar/patches/patch-ac    Sun May 07 03:20:22 2006 +0000
+++ b/archivers/dar/patches/patch-ac    Sun May 07 05:01:29 2006 +0000
@@ -1,13 +1,22 @@
-$NetBSD: patch-ac,v 1.4 2005/09/09 11:45:40 rillig Exp $
+$NetBSD: patch-ac,v 1.5 2006/05/07 05:01:29 minskim Exp $
 
---- configure.orig     2005-08-19 22:50:34.000000000 -0700
-+++ configure  2005-08-19 22:51:48.000000000 -0700
-@@ -10320,7 +10320,7 @@
+--- configure.orig     2005-05-10 03:43:19.000000000 -0700
++++ configure
+@@ -9874,7 +9874,7 @@ int
+ main ()
+ {
+ bindtextdomain ("", "");
+-return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
++return * gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
+   ;
+   return 0;
+ }
+@@ -10320,7 +10320,7 @@ int
  main ()
  {
  bindtextdomain ("", "");
 -return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0)
-+return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias ()
++return * gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias ()
    ;
    return 0;
  }



Home | Main Index | Thread Index | Old Index