Date: Mon, 6 Apr 2020 12:14:46 +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: r530878 - head/emulators/fs-uae Message-ID: <202004061214.036CEkkN002157@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Mon Apr 6 12:14:46 2020 New Revision: 530878 URL: https://svnweb.freebsd.org/changeset/ports/530878 Log: 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. MFH: 2020Q2 (fix build blanket) Modified: head/emulators/fs-uae/Makefile Modified: head/emulators/fs-uae/Makefile ============================================================================== --- head/emulators/fs-uae/Makefile Mon Apr 6 11:51:57 2020 (r530877) +++ head/emulators/fs-uae/Makefile Mon Apr 6 12:14:46 2020 (r530878) @@ -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?202004061214.036CEkkN002157>