Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Jun 2020 15:48:30 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r538163 - head/emulators/fs-uae
Message-ID:  <202006071548.057FmU7P076193@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006071548.057FmU7P076193>