/hg/release/icedtea7-2.6: 2 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Tue May 16 23:07:51 UTC 2017
changeset 2f57ce09fe1e in /hg/release/icedtea7-2.6
details: http://icedtea.classpath.org/hg/release/icedtea7-2.6?cmd=changeset;node=2f57ce09fe1e
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Tue May 16 02:58:07 2017 +0100
PR3379: Perl should be mandatory
2017-05-10 Andrew John Hughes <gnu.andrew at member.fsf.org>
PR3379: Perl should be mandatory
* NEWS: Updated.
* configure.ac:
Change Perl macro invocation to use IT_FIND_TOOL
and make it unconditional.
changeset 7b2c9f581fd9 in /hg/release/icedtea7-2.6
details: http://icedtea.classpath.org/hg/release/icedtea7-2.6?cmd=changeset;node=7b2c9f581fd9
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Tue May 16 03:02:53 2017 +0100
PR3390: javac.in and javah.in should use @PERL@ rather than a hardcoded path
2017-05-15 Andrew John Hughes <gnu.andrew at member.fsf.org>
PR3390: javac.in and javah.in should use @PERL@
rather than a hardcoded path
* javac.in: Use @PERL at .
* javah.in: Likewise.
diffstat:
ChangeLog | 15 +++++++++++++++
NEWS | 2 ++
configure.ac | 6 +-----
javac.in | 2 +-
javah.in | 2 +-
5 files changed, 20 insertions(+), 7 deletions(-)
diffs (75 lines):
diff -r 8dab14649af2 -r 7b2c9f581fd9 ChangeLog
--- a/ChangeLog Fri May 12 17:42:28 2017 +0100
+++ b/ChangeLog Tue May 16 03:02:53 2017 +0100
@@ -1,3 +1,18 @@
+2017-05-15 Andrew John Hughes <gnu.andrew at member.fsf.org>
+
+ PR3390: javac.in and javah.in should use @PERL@
+ rather than a hardcoded path
+ * javac.in: Use @PERL at .
+ * javah.in: Likewise.
+
+2017-05-10 Andrew John Hughes <gnu.andrew at member.fsf.org>
+
+ PR3379: Perl should be mandatory
+ * NEWS: Updated.
+ * configure.ac:
+ Change Perl macro invocation to use IT_FIND_TOOL
+ and make it unconditional.
+
2017-05-12 Andrew John Hughes <gnu_andrew at member.fsf.org>
Bump to icedtea-2.6.10.
diff -r 8dab14649af2 -r 7b2c9f581fd9 NEWS
--- a/NEWS Fri May 12 17:42:28 2017 +0100
+++ b/NEWS Tue May 16 03:02:53 2017 +0100
@@ -111,6 +111,8 @@
* Bug fixes
- PR3349: Architectures unsupported by SystemTap tapsets throw a parse error
- PR3370: Disable ARM32 JIT by default in jdk_generic_profile.sh
+ - PR3379: Perl should be mandatory
+ - PR3390: javac.in and javah.in should use @PERL@ rather than a hardcoded path
* CACAO
- PR2732: Raise javadoc memory limits for CACAO again!
* AArch64 port
diff -r 8dab14649af2 -r 7b2c9f581fd9 configure.ac
--- a/configure.ac Fri May 12 17:42:28 2017 +0100
+++ b/configure.ac Tue May 16 03:02:53 2017 +0100
@@ -42,6 +42,7 @@
dnl OpenJDK's README-builds.html lists gawk as a build dependency so we
dnl check for it explicitly rather than using AC_PROG_AWK.
IT_FIND_TOOL([GAWK], [gawk])
+IT_FIND_TOOL([PERL], [perl])
IT_CHECK_FOR_MERCURIAL
IT_OBTAIN_HG_REVISIONS
AC_PATH_TOOL([LSB_RELEASE],[lsb_release])
@@ -328,11 +329,6 @@
]])], [AC_MSG_RESULT([yes])], [SDT_H_FOUND='no'; AC_MSG_WARN([systemtap sdt.h or g++ too old])])
AC_LANG_POP([C++])
if test "x${SDT_H_FOUND}" = "xyes"; then
- AC_PATH_TOOL([PERL],[perl])
- if test x"${PERL}" = x ; then
- AC_MSG_WARN([Perl not found in PATH; SystemTap tests will not be able to run])
- fi
- AC_SUBST(PERL)
AC_PATH_TOOL([STAP],[stap])
if test x"${STAP}" = x ; then
AC_MSG_WARN([stap not found in PATH; SystemTap tests will not be able to run])
diff -r 8dab14649af2 -r 7b2c9f581fd9 javac.in
--- a/javac.in Fri May 12 17:42:28 2017 +0100
+++ b/javac.in Tue May 16 03:02:53 2017 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!@PERL@ -w
use strict;
use constant NO_DUP_ARGS => qw(-source -target -d -encoding);
use constant STRIP_ARGS_1 => qw(-Werror -implicit:none -J-Xbootclasspath/p:);
diff -r 8dab14649af2 -r 7b2c9f581fd9 javah.in
--- a/javah.in Fri May 12 17:42:28 2017 +0100
+++ b/javah.in Tue May 16 03:02:53 2017 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!@PERL@ -w
use strict;
exec '@JAVAH@', (grep !/^-X/, @ARGV) ;
More information about the distro-pkg-dev
mailing list