svn commit: r346916 - head/devel/pcre

Brendan Fabeny bf at FreeBSD.org
Mon Mar 3 15:27:34 UTC 2014


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


More information about the svn-ports-all mailing list