svn commit: r555540 - head/devel/pcre2

Kirill Ponomarev krion at FreeBSD.org
Tue Nov 17 06:53:47 UTC 2020


Author: krion
Date: Tue Nov 17 06:53:47 2020
New Revision: 555540
URL: https://svnweb.freebsd.org/changeset/ports/555540

Log:
  Disable JIT support on RISC-V.
  
  PR:		251193
  Submitted by:	mhorne

Modified:
  head/devel/pcre2/Makefile

Modified: head/devel/pcre2/Makefile
==============================================================================
--- head/devel/pcre2/Makefile	Tue Nov 17 06:33:23 2020	(r555539)
+++ head/devel/pcre2/Makefile	Tue Nov 17 06:53:47 2020	(r555540)
@@ -31,7 +31,7 @@ READLINE_CONFIGURE_ENABLE=	pcre2test-libreadline
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} != "sparc64" && ${ARCH:Mmips64*} == ""
+.if ${ARCH} != "sparc64" && ${ARCH:Mmips64*} == "" && ${ARCH:Mriscv64*} == ""
 CONFIGURE_ARGS+=	--enable-jit
 .else
 CONFIGURE_ARGS+=	--disable-jit


More information about the svn-ports-all mailing list