/hg/icedtea7: 2 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Thu Aug 3 05:51:24 UTC 2017
changeset 1742e9f317d3 in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=1742e9f317d3
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Thu Aug 03 07:00:47 2017 +0100
PR3379: Perl should be mandatory
2017-05-10 Andrew John Hughes <gnu.andrew at member.fsf.org>
PR3379: Perl should be mandatory
* configure.ac:
Change Perl macro invocation to use IT_FIND_TOOL
and make it unconditional.
changeset 12c4c5ba02a1 in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=12c4c5ba02a1
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 | 14 ++++++++++++++
configure.ac | 6 +-----
javac.in | 2 +-
javah.in | 2 +-
4 files changed, 17 insertions(+), 7 deletions(-)
diffs (62 lines):
diff -r a98aaa5d9311 -r 12c4c5ba02a1 ChangeLog
--- a/ChangeLog Wed Aug 02 09:19:23 2017 +0100
+++ b/ChangeLog Tue May 16 03:02:53 2017 +0100
@@ -1,3 +1,17 @@
+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
+ * configure.ac:
+ Change Perl macro invocation to use IT_FIND_TOOL
+ and make it unconditional.
+
2017-08-01 Andrew John Hughes <gnu_andrew at member.fsf.org>
Bump to icedtea-2.7.0pre13.
diff -r a98aaa5d9311 -r 12c4c5ba02a1 configure.ac
--- a/configure.ac Wed Aug 02 09:19:23 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])
@@ -329,11 +330,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 a98aaa5d9311 -r 12c4c5ba02a1 javac.in
--- a/javac.in Wed Aug 02 09:19:23 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 a98aaa5d9311 -r 12c4c5ba02a1 javah.in
--- a/javah.in Wed Aug 02 09:19:23 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