1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Add powerpc64 support

PR:		237370
This commit is contained in:
Greg Lewis 2019-08-26 02:00:42 +00:00
parent 85873f1212
commit 0d895bb102
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=509861
2 changed files with 13 additions and 1 deletions

View File

@ -12,7 +12,7 @@ COMMENT= Java Development Kit ${JDK_MAJOR_VERSION}
LICENSE= GPLv2
ONLY_FOR_ARCHS= amd64 i386
ONLY_FOR_ARCHS= amd64 i386 powerpc64
BUILD_DEPENDS= zip:archivers/zip \
autoconf>0:devel/autoconf \

View File

@ -0,0 +1,12 @@
--- src/jdk.hotspot.agent/bsd/native/libsaproc/ps_proc.c
+++ src/jdk.hotspot.agent/bsd/native/libsaproc/ps_proc.c
@@ -27,8 +27,8 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
-#include <sys/sysctl.h>
#include <sys/types.h>
+#include <sys/sysctl.h>
#include <sys/wait.h>
#include <sys/ptrace.h>
#include <sys/param.h>