svn commit: r486976 - head/java/openjdk8/files

Greg Lewis glewis at FreeBSD.org
Sat Dec 8 18:43:57 UTC 2018


Author: glewis
Date: Sat Dec  8 18:43:56 2018
New Revision: 486976
URL: https://svnweb.freebsd.org/changeset/ports/486976

Log:
  . Fix compilation on powerpc64
  
  PR:		223834
  Submitted by:	Curtis Hamilton <hamiltcl at verizon.net>

Added:
  head/java/openjdk8/files/patch-hotspot_src_cpu_ppc_vm_vm_version_ppc.cpp   (contents, props changed)

Added: head/java/openjdk8/files/patch-hotspot_src_cpu_ppc_vm_vm_version_ppc.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/openjdk8/files/patch-hotspot_src_cpu_ppc_vm_vm_version_ppc.cpp	Sat Dec  8 18:43:56 2018	(r486976)
@@ -0,0 +1,17 @@
+--- hotspot/src/cpu/ppc/vm/vm_version_ppc.cpp.orig
++++ hotspot/src/cpu/ppc/vm/vm_version_ppc.cpp
+@@ -38,8 +38,13 @@
+ #ifdef TARGET_OS_FAMILY_linux
+ # include "os_linux.inline.hpp"
+ #endif
+-
++#ifdef TARGET_OS_FAMILY_bsd
++# include "os_bsd.inline.hpp"
++#endif
++
++#ifndef TARGET_OS_FAMILY_bsd
+ # include <sys/sysinfo.h>
++#endif
+ 
+ int VM_Version::_features = VM_Version::unknown_m;
+ int VM_Version::_measured_cache_line_size = 128; // default value


More information about the svn-ports-all mailing list