Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id DCB667A26E for ; Tue, 13 Sep 2016 14:49:17 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7F56D85E94; Tue, 13 Sep 2016 14:49:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0E57985E58 for ; Tue, 13 Sep 2016 14:49:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id vuuMhSoADq4p for ; Tue, 13 Sep 2016 14:49:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6EF0E84CED for ; Tue, 13 Sep 2016 14:49:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5FB56FBD1; Tue, 13 Sep 2016 14:49:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1473778156179660" MIME-Version: 1.0 Date: Tue, 13 Sep 2016 14:49:16 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/archivers/unzip To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20160913144916.5FB56FBD1@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1473778156179660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Sep 13 14:49:16 UTC 2016 Modified Files: pkgsrc/archivers/unzip: Makefile Log Message: Limit largefile hack to just SunOS-*-sparc, there's no reason why x86 shouldn't support >2G files as it works perfectly fine. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/archivers/unzip/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1473778156179660 Content-Disposition: inline Content-Length: 799 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/unzip/Makefile diff -u pkgsrc/archivers/unzip/Makefile:1.93 pkgsrc/archivers/unzip/Makefile:1.94 --- pkgsrc/archivers/unzip/Makefile:1.93 Fri Nov 13 22:13:43 2015 +++ pkgsrc/archivers/unzip/Makefile Tue Sep 13 14:49:16 2016 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.93 2015/11/13 22:13:43 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2016/09/13 14:49:16 jperkin Exp $ DISTNAME= unzip60 PKGNAME= unzip-6.0 -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= archivers MASTER_SITES= ftp://ftp.info-zip.org/pub/infozip/src/ EXTRACT_SUFX= .tgz @@ -38,7 +38,7 @@ CPPFLAGS+= -DBSD CPPFLAGS+= -DNO_LCHMOD .endif CPPFLAGS+= -DUNIX -Dunix -DUSE_UNSHRINK -I. -.if (${OPSYS} != "SunOS") +.if empty(MACHINE_PLATFORM:MSunOS-*-sparc) CPPFLAGS+= -DLARGE_FILE_SUPPORT .endif --_----------=_1473778156179660--