Summary: | [PATCH] devel/pcre: Seems the jit isn't for mips64. | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Mathieu Arnold <mat> | ||||
Component: | Individual Port(s) | Assignee: | Brendan Fabeny <bf> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Mathieu Arnold
2014-02-23 18:20:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->bf Over to maintainer (via the GNATS Auto Assign Tool) Author: bf Date: Mon Mar 3 15:27:34 2014 New Revision: 346916 URL: http://svnweb.freebsd.org/changeset/ports/346916 QAT: https://qat.redports.org/buildarchive/r346916/ Log: Disable the pcre jit on mips64* PR: 186983 Submitted by: mat Modified: head/devel/pcre/Makefile Modified: head/devel/pcre/Makefile ============================================================================== --- head/devel/pcre/Makefile Mon Mar 3 15:20:27 2014 (r346915) +++ head/devel/pcre/Makefile Mon Mar 3 15:27:34 2014 (r346916) @@ -32,7 +32,7 @@ STACK_RECURSION_DESC= Use the stack for .include <bsd.port.options.mk> -.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" +.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" && ${ARCH:Mmips64*} == "" CONFIGURE_ARGS+= --enable-jit .else CONFIGURE_ARGS+= --disable-jit _______________________________________________ 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: open->closed Committed, with minor changes. Thanks! |