diff options
author | minskim <minskim> | 2006-05-07 05:01:29 +0000 |
---|---|---|
committer | minskim <minskim> | 2006-05-07 05:01:29 +0000 |
commit | a2de85f2412d27c751442dfb6ed2db7ff49d710c (patch) | |
tree | b81338ace096f5e492ed330fb26bc2f99b4c457b /archivers/dar | |
parent | 0614b7255012838c4ce60c326c1c3ae0d042e456 (diff) | |
download | pkgsrc-a2de85f2412d27c751442dfb6ed2db7ff49d710c.tar.gz |
Do not convert char* to int, which may cause an error on 64-bit platforms.
Bump PKGREVISION.
Diffstat (limited to 'archivers/dar')
-rw-r--r-- | archivers/dar/Makefile | 4 | ||||
-rw-r--r-- | archivers/dar/distinfo | 4 | ||||
-rw-r--r-- | archivers/dar/patches/patch-ac | 19 |
3 files changed, 18 insertions, 9 deletions
diff --git a/archivers/dar/Makefile b/archivers/dar/Makefile index 9347c34132e..0b4d642a160 100644 --- a/archivers/dar/Makefile +++ b/archivers/dar/Makefile @@ -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 --git a/archivers/dar/distinfo b/archivers/dar/distinfo index 59cf2d9ffb3..a0b67f99e42 100644 --- a/archivers/dar/distinfo +++ b/archivers/dar/distinfo @@ -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 --git a/archivers/dar/patches/patch-ac b/archivers/dar/patches/patch-ac index 8696278e8f4..468e729c278 100644 --- a/archivers/dar/patches/patch-ac +++ b/archivers/dar/patches/patch-ac @@ -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; } |