Date: Sun, 6 Sep 2020 00:54:26 +0000 (UTC) From: Greg Lewis <glewis@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547769 - head/java/openjdk15/files Message-ID: <202009060054.0860sQSq041031@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: glewis Date: Sun Sep 6 00:54:26 2020 New Revision: 547769 URL: https://svnweb.freebsd.org/changeset/ports/547769 Log: Fix the build for 12/powerpc64 Added: head/java/openjdk15/files/extra-patch-src_hotspot_cpu_ppc_vm__version__ppc.hpp (contents, props changed) Added: head/java/openjdk15/files/extra-patch-src_hotspot_cpu_ppc_vm__version__ppc.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk15/files/extra-patch-src_hotspot_cpu_ppc_vm__version__ppc.hpp Sun Sep 6 00:54:26 2020 (r547769) @@ -0,0 +1,11 @@ +--- src/hotspot/cpu/ppc/vm_version_ppc.hpp.orig 2019-10-16 11:31:09.000000000 -0700 ++++ src/hotspot/cpu/ppc/vm_version_ppc.hpp 2019-10-23 12:54:06.972903000 -0700 +@@ -108,7 +108,7 @@ + static bool has_lqarx() { return (_features & lqarx_m) != 0; } + static bool has_vcipher() { return (_features & vcipher_m) != 0; } + static bool has_vpmsumb() { return (_features & vpmsumb_m) != 0; } +- static bool has_mfdscr() { return (_features & mfdscr_m) != 0; } ++ static bool has_mfdscr() { return false; } + static bool has_vsx() { return (_features & vsx_m) != 0; } + static bool has_ldbrx() { return (_features & ldbrx_m) != 0; } + static bool has_stdbrx() { return (_features & stdbrx_m) != 0; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009060054.0860sQSq041031>