svn commit: r538163 - head/emulators/fs-uae

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jun 7 15:48:30 UTC 2020


Author: pkubaj
Date: Sun Jun  7 15:48:30 2020
New Revision: 538163
URL: https://svnweb.freebsd.org/changeset/ports/538163

Log:
  emulators/fs-uae: fix build on non-x86
  
  --without-jit is now not recognized.

Modified:
  head/emulators/fs-uae/Makefile

Modified: head/emulators/fs-uae/Makefile
==============================================================================
--- head/emulators/fs-uae/Makefile	Sun Jun  7 15:12:56 2020	(r538162)
+++ head/emulators/fs-uae/Makefile	Sun Jun  7 15:48:30 2020	(r538163)
@@ -42,7 +42,7 @@ JIT_CONFIGURE_ENABLE=	jit
 
 # JIT is not supported on non-x86 make sure it's off
 .if ${ARCH} != amd64 && ${ARCH} != i386
-CONFIGURE_ARGS+=	--without-jit
+CONFIGURE_ARGS+=	--disable-jit
 .endif
 
 post-patch:


More information about the svn-ports-head mailing list