changeset in /hg/icedtea6: 2008-04-15 Christan Thalinger <twis...
Christian Thalinger
twisti at complang.tuwien.ac.at
Tue Apr 15 00:38:29 PDT 2008
changeset edf310873bf7 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=edf310873bf7
description:
2008-04-15 Christan Thalinger <twisti at complang.tuwien.ac.at>
* acinclude.m4 (ENABLE_ZERO_BUILD): Make --disable-zero work and
don't build zero by default when compiling --with-cacao.
* aclocal.m4, configure, Makefile.in: Regenerated.
diffstat:
5 files changed, 83 insertions(+), 41 deletions(-)
ChangeLog | 6 ++++++
Makefile.in | 32 +++++++++++++++++++-------------
acinclude.m4 | 18 +++++++++++++++---
aclocal.m4 | 48 +++++++++++++++++++++++++++---------------------
configure | 20 ++++++++++++++++----
diffs (289 lines):
diff -r 43f18ddc7c1c -r edf310873bf7 ChangeLog
--- a/ChangeLog Mon Apr 14 14:09:53 2008 -0400
+++ b/ChangeLog Tue Apr 15 09:36:40 2008 +0200
@@ -1,3 +1,9 @@ 2008-04-14 Joshua Sumali <jsumali at redh
+2008-04-15 Christan Thalinger <twisti at complang.tuwien.ac.at>
+
+ * acinclude.m4 (ENABLE_ZERO_BUILD): Make --disable-zero work and
+ don't build zero by default when compiling --with-cacao.
+ * aclocal.m4, configure, Makefile.in: Regenerated.
+
2008-04-14 Joshua Sumali <jsumali at redhat.com>
* rt/net/sourceforge/jnlp/services/XFileContents.java: Add support for
diff -r 43f18ddc7c1c -r edf310873bf7 Makefile.in
--- a/Makefile.in Mon Apr 14 14:09:53 2008 -0400
+++ b/Makefile.in Tue Apr 15 09:36:40 2008 +0200
@@ -1,8 +1,8 @@
-# Makefile.in generated by automake 1.10 from Makefile.am.
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -549,6 +549,10 @@ dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
$(am__remove_distdir)
+dist-lzma: distdir
+ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
+ $(am__remove_distdir)
+
dist-tarZ: distdir
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__remove_distdir)
@@ -575,6 +579,8 @@ distcheck: dist
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
+ *.tar.lzma*) \
+ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
@@ -718,17 +724,17 @@ uninstall-am:
.MAKE: install-am install-strip
.PHONY: all all-am all-local am--refresh check check-am clean \
- clean-generic dist dist-all dist-bzip2 dist-gzip dist-shar \
- dist-tarZ dist-zip distcheck distclean distclean-generic \
- distclean-local distcleancheck distdir distuninstallcheck dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-dvi install-dvi-am \
- install-exec install-exec-am install-html install-html-am \
- install-info install-info-am install-man install-pdf \
- install-pdf-am install-ps install-ps-am install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
- pdf-am ps ps-am uninstall uninstall-am
+ clean-generic dist dist-all dist-bzip2 dist-gzip dist-lzma \
+ dist-shar dist-tarZ dist-zip distcheck distclean \
+ distclean-generic distclean-local distcleancheck distdir \
+ distuninstallcheck dvi dvi-am html html-am info info-am \
+ install install-am install-data install-data-am install-dvi \
+ install-dvi-am install-exec install-exec-am install-html \
+ install-html-am install-info install-info-am install-man \
+ install-pdf install-pdf-am install-ps install-ps-am \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am
# Top-Level Targets
diff -r 43f18ddc7c1c -r edf310873bf7 acinclude.m4
--- a/acinclude.m4 Mon Apr 14 14:09:53 2008 -0400
+++ b/acinclude.m4 Tue Apr 15 09:36:40 2008 +0200
@@ -521,14 +521,26 @@ AC_DEFUN([ENABLE_ZERO_BUILD],
[AS_HELP_STRING(--enable-zero,
use zero-assembler port on non-zero platforms)],
[
- use_zero=yes
+ case "${enableval}" in
+ no)
+ use_zero=no
+ ;;
+ *)
+ use_zero=yes
+ ;;
+ esac
],
[
case "${host}" in
i?86-*-*) ;;
x86_64-*-*) ;;
*)
- use_zero=yes
+ if test "x${CACAO}" != xno; then
+ use_zero=no
+ else
+ use_zero=yes
+ fi
+ ;;
esac
])
AC_MSG_RESULT($use_zero)
@@ -626,7 +638,7 @@ AC_DEFUN([AC_CHECK_WITH_CACAO],
CACAO=no
;;
*)
- CACAO=${withval}
+ CACAO=${withval}
;;
esac
],
diff -r 43f18ddc7c1c -r edf310873bf7 aclocal.m4
--- a/aclocal.m4 Mon Apr 14 14:09:53 2008 -0400
+++ b/aclocal.m4 Tue Apr 15 09:36:40 2008 +0200
@@ -1,7 +1,7 @@
-# generated automatically by aclocal 1.10 -*- Autoconf -*-
+# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006 Free Software Foundation, Inc.
+# 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -11,10 +11,13 @@
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
-m4_if(m4_PACKAGE_VERSION, [2.61],,
-[m4_fatal([this file was generated for autoconf 2.61.
-You have another version of autoconf. If you want to use that,
-you should regenerate the build system entirely.], [63])])
+m4_ifndef([AC_AUTOCONF_VERSION],
+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
+m4_if(AC_AUTOCONF_VERSION, [2.61],,
+[m4_warning([this file was generated for autoconf 2.61.
+You have another version of autoconf. It may work, but is not guaranteed to.
+If you have problems, you may need to regenerate the build system entirely.
+To do so, use the procedure documented by the package, typically `autoreconf'.])])
# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
#
@@ -174,7 +177,7 @@ fi[]dnl
fi[]dnl
])# PKG_CHECK_MODULES
-# Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -189,7 +192,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
[am__api_version='1.10'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.10], [],
+m4_if([$1], [1.10.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -205,8 +208,10 @@ m4_define([_AM_AUTOCONF_VERSION], [])
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.10])dnl
-_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)])
+[AM_AUTOMAKE_VERSION([1.10.1])dnl
+m4_ifndef([AC_AUTOCONF_VERSION],
+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
+_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)])
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
@@ -478,7 +483,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS
# each Makefile.in and add a new line on top of each file to say so.
# Grep'ing the whole file is not good either: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
dirpart=`AS_DIRNAME("$mf")`
else
continue
@@ -526,13 +531,13 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS]
# Do all the work for Automake. -*- Autoconf -*-
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 12
+# 2005, 2006, 2008 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# serial 13
# This macro actually does too much. Some checks are only needed if
# your package does certain things. But this isn't really a big deal.
@@ -637,16 +642,17 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
# our stamp files there.
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
[# Compute $1's index in $config_headers.
+_am_arg=$1
_am_stamp_count=1
for _am_header in $config_headers :; do
case $_am_header in
- $1 | $1:* )
+ $_am_arg | $_am_arg:* )
break ;;
* )
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
esac
done
-echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
+echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
#
@@ -935,7 +941,7 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])])
# _AM_SUBST_NOTMAKE(VARIABLE)
# ---------------------------
-# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in.
+# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
# This macro is traced by Automake.
AC_DEFUN([_AM_SUBST_NOTMAKE])
diff -r 43f18ddc7c1c -r edf310873bf7 configure
--- a/configure Mon Apr 14 14:09:53 2008 -0400
+++ b/configure Tue Apr 15 09:36:40 2008 +0200
@@ -7946,7 +7946,7 @@ if test "${with_cacao+set}" = set; then
CACAO=no
;;
*)
- CACAO=${withval}
+ CACAO=${withval}
;;
esac
@@ -8644,7 +8644,14 @@ echo $ECHO_N "checking whether to use th
# Check whether --enable-zero was given.
if test "${enable_zero+set}" = set; then
enableval=$enable_zero;
- use_zero=yes
+ case "${enableval}" in
+ no)
+ use_zero=no
+ ;;
+ *)
+ use_zero=yes
+ ;;
+ esac
else
@@ -8652,7 +8659,12 @@ else
i?86-*-*) ;;
x86_64-*-*) ;;
*)
- use_zero=yes
+ if test "x${CACAO}" != xno; then
+ use_zero=no
+ else
+ use_zero=yes
+ fi
+ ;;
esac
fi
@@ -13341,7 +13353,7 @@ echo "$as_me: executing $ac_file command
# each Makefile.in and add a new line on top of each file to say so.
# Grep'ing the whole file is not good either: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
dirpart=`$as_dirname -- "$mf" ||
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$mf" : 'X\(//\)[^/]' \| \
More information about the distro-pkg-dev
mailing list