On mips64, it says: pcre_jit_compile.c:65:2: error: #error Unsupported architecture http://pkg.absolight.net/logs/bulk/latest-per-pkg/pcre/8.34/100mips64-pkgng.log
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!