This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[libffi] Update to automake 1.9.3
- From: Kelley Cook <kcook at gcc dot gnu dot org>
- To: GCC Patches <gcc-patches at gcc dot gnu dot org>, GCJ-patches <java-patches at gcc dot gnu dot org>
- Date: Thu, 18 Nov 2004 13:18:01 -0500
- Subject: [libffi] Update to automake 1.9.3
- Hop-count: 1
Updates libffi to automake 1.9.3.
Applies the same suggestion as for fastjar to enable dependencies.
Bootstrapped on i686-pc-cygwin
Makefile.am | 3
Makefile.in | 773
++++++++++++++++----------------------------------
acinclude.m4 | 12
aclocal.m4 | 191 ++++++++++--
autom4te.cache |only
configure | 79 ++---
include/Makefile.in | 32 +-
testsuite/Makefile.in | 10
8 files changed, 491 insertions(+), 609 deletions(-)
OK to install?
2004-11-17 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.am: Remove no-dependencies. Add ACLOCAL_AMFLAGS.
* acinclude.m4: Delete logic for sincludes.
* aclocal.m4, Makefile.in, configure: Regenerate.
* include/Makefile: Likewise.
* testsuite/Makefile: Likewise.
diff -prud /home/kcook34/gcc-orig/libffi/Makefile.am ./Makefile.am
--- /home/kcook34/gcc-orig/libffi/Makefile.am 2004-10-13 13:20:21.000000000 -0400
+++ ./Makefile.am 2004-11-17 12:21:11.679586300 -0500
@@ -1,6 +1,7 @@
## Process this with automake to create Makefile.in
-AUTOMAKE_OPTIONS = foreign no-dependencies subdir-objects
+AUTOMAKE_OPTIONS = foreign subdir-objects
+ACLOCAL_AMFLAGS = -I .. -I ../config
SUBDIRS = include testsuite
diff -prud /home/kcook34/gcc-orig/libffi/acinclude.m4 ./acinclude.m4
--- /home/kcook34/gcc-orig/libffi/acinclude.m4 2004-08-03 16:36:23.000000000 -0400
+++ ./acinclude.m4 2004-11-17 12:21:42.032929600 -0500
@@ -1,13 +1,3 @@
-sinclude(../libtool.m4)
-dnl The lines below arrange for aclocal not to bring libtool.m4
-dnl AC_PROG_LIBTOOL into aclocal.m4, while still arranging for automake
-dnl to add a definition of LIBTOOL to Makefile.in.
-ifelse(yes,no,[
-AC_DEFUN([AC_PROG_LIBTOOL],)
-AC_DEFUN([AM_PROG_LIBTOOL],)
-AC_SUBST(LIBTOOL)
-])
-
# mmap(2) blacklisting. Some platforms provide the mmap library routine
# but don't support all of the features we need from it.
AC_DEFUN([AC_FUNC_MMAP_BLACKLIST],
@@ -100,5 +90,3 @@ if test $ac_cv_func_mmap_anon = yes; the
[Define if mmap with MAP_ANON(YMOUS) works.])
fi
])
-
-sinclude(../config/accross.m4)