/hg/icedtea: 2 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Tue Nov 17 02:36:54 PST 2009
changeset 585267f8c6f2 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=585267f8c6f2
author: Andrew John Hughes <ahughes at redhat.com>
date: Tue Nov 17 10:37:37 2009 +0000
Removed tag icedtea-1.12
changeset d88d89a06c5e in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=d88d89a06c5e
author: Andrew John Hughes <ahughes at redhat.com>
date: Tue Nov 17 10:41:27 2009 +0000
Fix use of IT_CHECK_FOR_CLASS method on Fedora.
2009-11-17 Andrew John Hughes <ahughes at redhat.com>
* acinclude.m4: (IT_CHECK_FOR_CLASS): Call
toString() on the class constant so Sun's javac doesn't
optimise out the line. Drop the -source 5 option as this
isn't needed if Class<?> is not used.
diffstat:
3 files changed, 12 insertions(+), 2 deletions(-)
.hgtags | 2 ++
ChangeLog | 8 ++++++++
acinclude.m4 | 4 ++--
diffs (42 lines):
diff -r 766972166cea -r d88d89a06c5e .hgtags
--- a/.hgtags Tue Nov 17 04:35:14 2009 +0000
+++ b/.hgtags Tue Nov 17 10:41:27 2009 +0000
@@ -22,3 +22,5 @@ 0000000000000000000000000000000000000000
0000000000000000000000000000000000000000 icedtea-1.11
df574d432c00e6ad570cc9d92eb4dcd51d31eb7a icedtea-1.11
3f7290ca2f5730cf1ebd8fcbbd062417750655aa icedtea-1.12
+3f7290ca2f5730cf1ebd8fcbbd062417750655aa icedtea-1.12
+0000000000000000000000000000000000000000 icedtea-1.12
diff -r 766972166cea -r d88d89a06c5e ChangeLog
--- a/ChangeLog Tue Nov 17 04:35:14 2009 +0000
+++ b/ChangeLog Tue Nov 17 10:41:27 2009 +0000
@@ -1,3 +1,11 @@ 2009-11-17 Andrew John Hughes <ahughes
+2009-11-17 Andrew John Hughes <ahughes at redhat.com>
+
+ * acinclude.m4:
+ (IT_CHECK_FOR_CLASS): Call toString() on the
+ class constant so Sun's javac doesn't optimise
+ out the line. Drop the -source 5 option as this
+ isn't needed if Class<?> is not used.
+
2009-11-17 Andrew John Hughes <ahughes at redhat.com>
* Makefile.am:
diff -r 766972166cea -r d88d89a06c5e acinclude.m4
--- a/acinclude.m4 Tue Nov 17 04:35:14 2009 +0000
+++ b/acinclude.m4 Tue Nov 17 10:41:27 2009 +0000
@@ -1538,12 +1538,12 @@ public class Test
{
public static void main(String[] args)
{
- Class<?> cls = $2.class;
+ $2.class.toString();
}
}
]
EOF
-if $JAVAC -cp . $JAVACFLAGS -nowarn -source 5 $CLASS >&AS_MESSAGE_LOG_FD 2>&1; then
+if $JAVAC -cp . $JAVACFLAGS -nowarn $CLASS >&AS_MESSAGE_LOG_FD 2>&1; then
if $JAVA -classpath . $BYTECODE; >&AS_MESSAGE_LOG_FD 2>&1; then
it_cv_$1=no;
else
More information about the distro-pkg-dev
mailing list