diff options
author | Strahil Yordanov <strahilski@yahoo.com> | 2017-04-02 18:45:35 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-06 21:02:46 +0700 |
commit | 268298a5689cfd3fd0d34f9128b7ccc8e2f89359 (patch) | |
tree | 74b73f167c120f9cee99599c7597b4e77e85b211 /development/openjdk8/openjdk8.SlackBuild | |
parent | 92e2bfd5dafef17e3ea63aeb22955ba10bb49596 (diff) |
development/openjdk8: Updated for version 8u121b13.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/openjdk8/openjdk8.SlackBuild')
-rw-r--r-- | development/openjdk8/openjdk8.SlackBuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/development/openjdk8/openjdk8.SlackBuild b/development/openjdk8/openjdk8.SlackBuild index d5a688452aa61..378a36b9563ef 100644 --- a/development/openjdk8/openjdk8.SlackBuild +++ b/development/openjdk8/openjdk8.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for OpenJDK -# Copyright 2016 Strahil Yordanov, Sofia, Bulgaria +# Copyright 2017 Strahil Yordanov, Sofia, Bulgaria # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,12 +23,12 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=openjdk8 -VERSION=${VERSION:-8u101b13} +VERSION=${VERSION:-8u121b13} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} DVER=1.8.0_$(printf $VERSION | cut -du -f2) -ICEDTEA=icedtea-3.1.0 +ICEDTEA=icedtea-3.3.0 if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -68,11 +68,13 @@ cd icedtea-build # Set JAVA_HOME in order to avoid conflictis with other already installed JVMs. # cacerts taken from this CentOS package: # http://mirror.centos.org/centos/6/os/x86_64/Packages/ca-certificates-2015.2.4-65.0.1.el6_6.noarch.rpm -JAVA_HOME=${BOOT_JAVA} PATH=${BOOT_JAVA}/bin:$PATH \ - ../$ICEDTEA/configure \ +JAVA_HOME=${BOOT_JAVA} PATH=${BOOT_JAVA}/bin:$PATH ../$ICEDTEA/configure \ --with-jdk-home=${BOOT_JAVA} \ --disable-docs \ --disable-downloading \ + --disable-system-kerberos \ + --disable-system-pcsc \ + --disable-system-sctp \ --with-cacerts-file="$CWD/cacerts" \ --with-openjdk-src-zip="$CWD/openjdk.tar.xz" \ --with-corba-src-zip="$CWD/corba.tar.xz" \ |