/hg/release/icedtea7-2.3: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Fri Mar 28 18:22:13 UTC 2014


changeset fea149da671f in /hg/release/icedtea7-2.3
details: http://icedtea.classpath.org/hg/release/icedtea7-2.3?cmd=changeset;node=fea149da671f
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Fri Mar 28 18:21:00 2014 +0000

	Start 2.3.15 release cycle.

	2014-03-28  Andrew John Hughes  <gnu.andrew at redhat.com>

		* configure.ac: Bump to 2.3.15pre00.
		* NEWS: Add 2.3.15 section.


changeset c1f745660d29 in /hg/release/icedtea7-2.3
details: http://icedtea.classpath.org/hg/release/icedtea7-2.3?cmd=changeset;node=c1f745660d29
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Fri Mar 28 18:22:00 2014 +0000

	PR1726: configure fails looking for ecj.jar before even trying to find javac

	2014-03-28  Andrew John Hughes  <gnu.andrew at redhat.com>

		* acinclude.m4:
		(IT_FIND_COMPILER): Check value of ECJ_JAR
		and JAVAC here ...
		(IT_FIND_ECJ_JAR): ... rather than here where
		${JAVAC} may not yet be defined.
		* NEWS: Updated.


diffstat:

 ChangeLog    |  14 ++++++++++++++
 NEWS         |   5 +++++
 acinclude.m4 |  11 ++++++-----
 configure.ac |   2 +-
 4 files changed, 26 insertions(+), 6 deletions(-)

diffs (73 lines):

diff -r 8a7b22cf755e -r c1f745660d29 ChangeLog
--- a/ChangeLog	Fri Mar 28 12:31:02 2014 +0000
+++ b/ChangeLog	Fri Mar 28 18:22:00 2014 +0000
@@ -1,3 +1,17 @@
+2014-03-28  Andrew John Hughes  <gnu.andrew at redhat.com>
+
+	* acinclude.m4:
+	(IT_FIND_COMPILER): Check value of ECJ_JAR
+	and JAVAC here ...
+	(IT_FIND_ECJ_JAR): ... rather than here where
+	${JAVAC} may not yet be defined.
+	* NEWS: Updated.
+
+2014-03-28  Andrew John Hughes  <gnu.andrew at redhat.com>
+
+	* configure.ac: Bump to 2.3.15pre00.
+	* NEWS: Add 2.3.15 section.
+
 2014-03-28  Andrew John Hughes  <gnu.andrew at member.fsf.org>
 
 	* NEWS: Update release date.
diff -r 8a7b22cf755e -r c1f745660d29 NEWS
--- a/NEWS	Fri Mar 28 12:31:02 2014 +0000
+++ b/NEWS	Fri Mar 28 18:22:00 2014 +0000
@@ -10,6 +10,11 @@
 
 CVE-XXXX-YYYY: http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=XXXX-YYYY
 
+New in release 2.3.15 (20XX-XX-XX):
+
+* Bug fixes
+  - PR1726: configure fails looking for ecj.jar before even trying to find javac
+
 New in release 2.3.14 (2014-03-28):
 
 * Security fixes
diff -r 8a7b22cf755e -r c1f745660d29 acinclude.m4
--- a/acinclude.m4	Fri Mar 28 12:31:02 2014 +0000
+++ b/acinclude.m4	Fri Mar 28 18:22:00 2014 +0000
@@ -127,6 +127,12 @@
   IT_USING_ECJ
   IT_WITH_GCJ
   
+  if test "x${ECJ_JAR}" = "xno"; then
+    if test "x${JAVAC}" = "x"; then
+      AC_MSG_ERROR("No compiler or ecj JAR file was found.")
+    fi
+  fi
+
   if test x"${GCJ}" != xno ; then
     JAVAC="${JAVA} -classpath ${ECJ_JAR} org.eclipse.jdt.internal.compiler.batch.Main"
   fi
@@ -343,11 +349,6 @@
       fi
   fi
   AC_MSG_RESULT(${ECJ_JAR})
-  if test "x${ECJ_JAR}" = "xno"; then
-    if test "x${JAVAC}" = "x"; then
-      AC_MSG_ERROR("No compiler or ecj JAR file was found.")
-    fi
-  fi
   AC_SUBST(ECJ_JAR)
 ])
 
diff -r 8a7b22cf755e -r c1f745660d29 configure.ac
--- a/configure.ac	Fri Mar 28 12:31:02 2014 +0000
+++ b/configure.ac	Fri Mar 28 18:22:00 2014 +0000
@@ -1,4 +1,4 @@
-AC_INIT([icedtea], [2.3.14], [distro-pkg-dev at openjdk.java.net])
+AC_INIT([icedtea], [2.3.15pre00], [distro-pkg-dev at openjdk.java.net])
 AM_INIT_AUTOMAKE([1.9 tar-pax foreign])
 AC_CONFIG_FILES([Makefile])
 


More information about the distro-pkg-dev mailing list