summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorwiz <wiz>2004-07-27 13:03:39 +0000
committerwiz <wiz>2004-07-27 13:03:39 +0000
commit4d1b11abf1f8bd2103065c28deaef788047c3dca (patch)
tree1199ca67370e0fd8fb040cc6a08005cc4f9e35d5 /archivers
parentf92e731edae1cbe8865b620af33991442ad56115 (diff)
downloadpkgsrc-4d1b11abf1f8bd2103065c28deaef788047c3dca.tar.gz
Update to 3.10.21, and fix build on current (statvfs lossage).
Changes since 3.10.20: * arj_arcv.c, arj_file.c, arj_proc.c, arj_user.c, arjtypes.c, environ.c, externs.c, externs.h, makefile: Merged with the remaining part of TCO fixes to make up for 3.10.21 * defines.h, encode.c, environ.c, environ.h, fmemcmp.asm, misc.c, rearj.c: Resync with TCO to close any outstanding bugs * arj.c: Rudimentary Borland code caused the filenames in argv[] to be mishandled under Win32 * register.c: REGISTER might fail due to _fput_* changes
Diffstat (limited to 'archivers')
-rw-r--r--archivers/arj/Makefile5
-rw-r--r--archivers/arj/distinfo8
-rw-r--r--archivers/arj/patches/patch-aa6
3 files changed, 9 insertions, 10 deletions
diff --git a/archivers/arj/Makefile b/archivers/arj/Makefile
index d28a72805c8..c28585df4ca 100644
--- a/archivers/arj/Makefile
+++ b/archivers/arj/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.10 2004/07/10 17:39:50 salo Exp $
+# $NetBSD: Makefile,v 1.11 2004/07/27 13:03:39 wiz Exp $
# FreeBSD Id: ports/archivers/arj/Makefile,v 1.2 2002/09/17 05:17:29 ijliao Exp
-DISTNAME= arj-3.10.20
-PKGREVISION= 1
+DISTNAME= arj-3.10.21
CATEGORIES= archivers
MASTER_SITES= http://testcase.newmail.ru/files/
diff --git a/archivers/arj/distinfo b/archivers/arj/distinfo
index 6bbb0dfa344..b65fa1b1776 100644
--- a/archivers/arj/distinfo
+++ b/archivers/arj/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.5 2004/07/10 17:39:50 salo Exp $
+$NetBSD: distinfo,v 1.6 2004/07/27 13:03:39 wiz Exp $
-SHA1 (arj-3.10.20.tar.gz) = ce818c8127d11efac469c65a9f65572be7e07a5a
-Size (arj-3.10.20.tar.gz) = 428054 bytes
-SHA1 (patch-aa) = 627dfb018aad8c624c5c88e4f4fdb39bee159b36
+SHA1 (arj-3.10.21.tar.gz) = 3599001a762655688dcd1663e100f2d6ebec8227
+Size (arj-3.10.21.tar.gz) = 430807 bytes
+SHA1 (patch-aa) = d9d1d7970a00286451a8fcf56e27cd86182e8a99
SHA1 (patch-ab) = c588776f9b8e2331471be07e6acd3b873af84fbc
SHA1 (patch-ac) = 4e557fa98bc92e033d11e2e9a8e34127275f7f72
diff --git a/archivers/arj/patches/patch-aa b/archivers/arj/patches/patch-aa
index 0445c385383..8a5f1cb0e8c 100644
--- a/archivers/arj/patches/patch-aa
+++ b/archivers/arj/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.4 2004/04/27 17:16:28 tv Exp $
+$NetBSD: patch-aa,v 1.5 2004/07/27 13:03:39 wiz Exp $
---- environ.c.orig Sat Apr 17 09:19:40 2004
+--- environ.c.orig 2004-06-18 18:19:36.000000000 +0200
+++ environ.c
@@ -61,7 +61,7 @@
#elif defined(__FreeBSD__)||defined(__NetBSD__)
@@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.4 2004/04/27 17:16:28 tv Exp $
return((LONG_MAX/(spclu*bps)<fclu)?LONG_MAX:spclu*bps*fclu);
#elif TARGET==UNIX
- #if defined(__QNXNTO__)||defined(__sco__)||defined(SUNOS)
-+ #if defined(__QNXNTO__)||defined(__sco__)||defined(SUNOS)||defined(__INTERIX)
++ #if defined(__QNXNTO__)||defined(__sco__)||defined(SUNOS)||defined(__INTERIX)||(defined(__NetBSD__) && (__NetBSD_Version__ > 200030000))
struct statvfs vfs;
if(statvfs(name, &vfs)==-1)