summaryrefslogtreecommitdiff
path: root/java/bootstrap-openjdk8/Makefile
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-11-02 05:29:33 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-11-02 05:29:33 +0000
commit25f84f86602e1d4cc34739a72775541e74656190 (patch)
treedb429bd0f9df5c359aa1e362296263fe3e261c94 /java/bootstrap-openjdk8/Makefile
parentDon't try to look for PLIST under .OBJDIR (diff)
Add support for aarch64.
PR: 223231
Notes
Notes: svn path=/head/; revision=453336
Diffstat (limited to 'java/bootstrap-openjdk8/Makefile')
-rw-r--r--java/bootstrap-openjdk8/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/bootstrap-openjdk8/Makefile b/java/bootstrap-openjdk8/Makefile
index a27b8c3ec727..de0ec5ae34ce 100644
--- a/java/bootstrap-openjdk8/Makefile
+++ b/java/bootstrap-openjdk8/Makefile
@@ -12,9 +12,10 @@ COMMENT= Java Development Kit 8
LICENSE= GPLv2
-ONLY_FOR_ARCHS= amd64 armv6 armv7 i386
+ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386
DISTINFO_FILE= ${.CURDIR}/distinfo.${JDK_ARCH}
+DISTVERSION_aarch64= r453315
DISTVERSION_amd64= r450802
DISTVERSION_arm= r450802
DISTVERSION_i386= r450802
@@ -32,7 +33,7 @@ INSTALLDIR= ${STAGEDIR}${PREFIX}/${JDK_ROOT}
.include <bsd.port.pre.mk>
-.if ${ARCH:Marmv*}
+.if ${ARCH} == aarch64 || ${ARCH:Marmv*}
RUN_DEPENDS+= ${LOCALBASE}/lib/libffi.so.6:devel/libffi
.endif