From owner-svn-ports-head@freebsd.org Mon Feb 13 16:52:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2849CDDCCB; Mon, 13 Feb 2017 16:52:45 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1A6BCE9; Mon, 13 Feb 2017 16:52:45 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1DGqiYI043131; Mon, 13 Feb 2017 16:52:44 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1DGqibP043129; Mon, 13 Feb 2017 16:52:44 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201702131652.v1DGqibP043129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 13 Feb 2017 16:52:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434003 - in head/archivers/fastjar: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Feb 2017 16:52:46 -0000 Author: tijl Date: Mon Feb 13 16:52:44 2017 New Revision: 434003 URL: https://svnweb.freebsd.org/changeset/ports/434003 Log: Remove -fPIC and fix the real problem where end_of_entries is sometimes declared as unsigned int and sometimes as off_t which have a different size and alignment. Added: head/archivers/fastjar/files/ head/archivers/fastjar/files/patch-jartool.c (contents, props changed) Modified: head/archivers/fastjar/Makefile Modified: head/archivers/fastjar/Makefile ============================================================================== --- head/archivers/fastjar/Makefile Mon Feb 13 16:49:42 2017 (r434002) +++ head/archivers/fastjar/Makefile Mon Feb 13 16:52:44 2017 (r434003) @@ -3,6 +3,7 @@ PORTNAME= fastjar PORTVERSION= 0.93.20060808 +PORTREVISION= 1 CATEGORIES= archivers java MASTER_SITES= LOCAL/maho/fastjar @@ -15,8 +16,6 @@ USES= gmake makeinfo perl5 tar:bzip2 USES_PERL5= build GNU_CONFIGURE= yes -CFLAGS_aarch64= -fPIC - WRKSRC= ${WRKDIR}/${PORTNAME} PORTDOCS= CHANGES ChangeLog NEWS README PLIST_FILES= bin/fastjar bin/grepjar \ Added: head/archivers/fastjar/files/patch-jartool.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/fastjar/files/patch-jartool.c Mon Feb 13 16:52:44 2017 (r434003) @@ -0,0 +1,11 @@ +--- jartool.c.orig 2006-08-07 08:06:23 UTC ++++ jartool.c +@@ -313,7 +313,7 @@ int number_of_entries; /* number of entr + const char *progname; + + /* The offset of the end of the last zip entry. */ +-ub4 end_of_entries; ++off_t end_of_entries; + + /* This is used to mark options with no short value. */ + #define LONG_OPT(Num) ((Num) + 128)