Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Apr 2020 12:15:45 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r530879 - branches/2020Q2/emulators/fs-uae
Message-ID:  <202004061215.036CFjvW002424@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Apr  6 12:15:44 2020
New Revision: 530879
URL: https://svnweb.freebsd.org/changeset/ports/530879

Log:
  MFH: r530878
  
  emulators/fs-uae: fix build on non-x86
  
  JIT is enabled by default everywhere, which causes fail on e.g. powerpc64:
  configure: error: in `/wrkdirs/usr/ports/emulators/fs-uae/work/fs-uae-3.0.2':
  configure: error: JIT is not supported on powerpc64-portbld-freebsd12.1
  
  Make JIT option available on all architectures so that --disable-jit is properly passed when the option is disabled.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q2/emulators/fs-uae/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/emulators/fs-uae/Makefile
==============================================================================
--- branches/2020Q2/emulators/fs-uae/Makefile	Mon Apr  6 12:14:46 2020	(r530878)
+++ branches/2020Q2/emulators/fs-uae/Makefile	Mon Apr  6 12:15:44 2020	(r530879)
@@ -31,9 +31,7 @@ GNU_CONFIGURE=	yes
 CFLAGS+=	-Wno-c++11-narrowing
 LDFLAGS_i386=	-Wl,-znotext
 
-OPTIONS_DEFINE=	DOCS DEBUG
-OPTIONS_DEFINE_i386=	JIT
-OPTIONS_DEFINE_amd64=	JIT
+OPTIONS_DEFINE=	DOCS DEBUG JIT
 
 JIT_DESC=	Enable JIT compiler (experimental)
 JIT_CONFIGURE_ENABLE=	jit



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