* Akim Demaille wrote on Thu, Jan 29, 2009 at 08:44:51PM CET: > Le 29 janv. 09 à 19:22, Ralf Wildenhues a écrit : > >>> - Bootstrap failures >>> >>> http://lists.gnu.org/archive/html/bug-libtool/2008-11/msg00098.html >>> >>> I suggest adding the following macros to lt~obsolete.m4 to stop >>> the boostrap nightmare. >> >> I agree that this needs fixing, and in fact this is the single most >> important issue to be addressed before 2.2.8. However, I really want >> to be able to reproduce it and thus understand the failure, and I >> haven't so far. I want to ensure that we cannot make this mistake >> again. > > My aclocal log seems to be clear about the issue.
I have committed this now, in your name. Hope that was ok, it seemed like your intention. Cheers, Ralf 2009-01-29 Akim Demaille <demai...@gostai.com> Fix bootstrap with older libtool.m4 in reach of aclocal. * libltdl/m4/lt~obsolete.m4: Add stub definitions for _LT_REQUIRED_DARWIN_CHECKS and _LT_AC_PROG_CXXCPP. diff --git a/libltdl/m4/lt~obsolete.m4 b/libltdl/m4/lt~obsolete.m4 index 637bb20..b60bbd2 100644 --- a/libltdl/m4/lt~obsolete.m4 +++ b/libltdl/m4/lt~obsolete.m4 @@ -1,6 +1,6 @@ # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives @@ -90,3 +90,5 @@ m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])