The port is marked broken für RELENG_7/amd64: .if ${OSVERSION} < 800000 && ${ARCH} == "amd64" BROKEN= segfaults during build .endif If I comment out the BROKEN line it builds perfectly fine in my Tinderbox. No segfaults. So unless it's a kernel problem, whatever caused the segfault is no longer an issue.
Responsible Changed From-To: freebsd-ports-bugs->scheidell I'll take it.
State Changed From-To: open->feedback segvs for me, FreeBSD 7.4, amd64. You might join freebsd-ports@ mailing list and have it checked a couple more times.
Author: scheidell Date: Sat Aug 18 21:48:35 2012 New Revision: 302742 URL: http://svn.freebsd.org/changeset/ports/302742 Log: - Unbreak for FreeBSD > 7.4 amd64 PR: ports/170548 Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> Approved by: port@ Modified: head/devel/zziplib/Makefile Modified: head/devel/zziplib/Makefile ============================================================================== --- head/devel/zziplib/Makefile Sat Aug 18 21:23:24 2012 (r302741) +++ head/devel/zziplib/Makefile Sat Aug 18 21:48:35 2012 (r302742) @@ -69,7 +69,7 @@ PLIST_SUB+= SDL="@comment " .include <bsd.port.pre.mk> -.if ${OSVERSION} < 800000 && ${ARCH} == "amd64" +.if ${OSVERSION} < 740000 && ${ARCH} == "amd64" BROKEN= segfaults during build .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed, with minor changes. Thanks!