aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2014-06-28 03:22:13 +0000
committerSteve Wills <swills@FreeBSD.org>2014-06-28 03:22:13 +0000
commit1ff952c421450743b60ef9e8bd4f88913b70023f (patch)
treebc0bda3b4cac93ce2957e8a67d93426a48a23cb4 /UPDATING
parent16c5fc7637f762d17f4ac4d116b6da08e561cc0c (diff)
downloadports-1ff952c421450743b60ef9e8bd4f88913b70023f.tar.gz
ports-1ff952c421450743b60ef9e8bd4f88913b70023f.zip
- Add note about default JDK changing from OpenJDK 1.6 to OpenJDK 1.7
Notes
Notes: svn path=/head/; revision=359641
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING32
1 files changed, 32 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index a37ac96490bd..1eefc5097234 100644
--- a/UPDATING
+++ b/UPDATING
@@ -6,6 +6,38 @@ You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
20140627:
+ AFFECTS: Users of Java
+ AUTHOR: swills@FreeBSD.org
+
+ The default version of OpenJDK has been updated from 1.6 to 1.7. To update,
+ users of Java will need to rebuild all ports that depend on Java:
+
+ If you use pkg (regardless of if you build ports from source or install
+ binary packages):
+ # pkg set -o java/openjdk6:java/openjdk7
+
+ If you use portmaster to build ports from source:
+
+ # portmaster -o java/openjdk7 openjdk6
+ # portmaster -R -r openjdk
+
+ If you use portupgrade to build ports from source:
+
+ # portupgrade -fo java/openjdk7 java/openjdk6
+
+ If you use pkg to install prebuilt binary packages:
+
+ # pkg install -fR java/openjdk7
+
+ If you wish to keep the 1.6 version as default, add the following lines to
+ your /etc/make.conf file:
+
+ #
+ # Keep OpenJDK 1.6 as default version.
+ #
+ JAVA_PREFERRED_PORTS=JAVA_PORT_NATIVE_OPENJDK_JDK_1_6
+
+20140627:
AFFECTS: users of security/amavisd-milter
AUTHOR: delphij@FreeBSD.org