On 27 Jun 2000, Alexandre Oliva wrote:
> On Jun 27, 2000, Mo DeJong <[EMAIL PROTECTED]> wrote:
>
> > configure:AC_LIBTOOL_CXXAM_DEPENDENCIES(CXX)
>
> The problem is in both libtool (multi-language) and automake, but I
> believe I've already fixed this particular problem in libtool. In
> libtool.m4 revision 1.71.2.21, there's a line break 798, after
> AC_LIBTOOL_CXX is added to the definition of AC_PROG_CXX. In order to
> be safe, automake should probably have a similar line break after
> appending AM_DEPENDENCIES to AC_PROG_CXX in init.m4. Would you be
> willing to post a patch to fix this problem-to-be?
Do you mean like this? (I really have no idea what this would do)
Index: m4/init.m4
===================================================================
RCS file: /cvs/automake/automake/m4/init.m4,v
retrieving revision 1.18
diff -u -r1.18 init.m4
--- init.m4 2000/05/01 10:57:08 1.18
+++ init.m4 2000/06/28 03:23:25
@@ -58,9 +58,11 @@
AC_PROVIDE_IFELSE([AC_PROG_CC],
[AM_DEPENDENCIES(CC)],
[define([AC_PROG_CC],
- defn([AC_PROG_CC])[AM_DEPENDENCIES(CC)])])dnl
+ defn([AC_PROG_CC])[AM_DEPENDENCIES(CC)
+])])dnl
AC_PROVIDE_IFELSE([AC_PROG_CXX],
[AM_DEPENDENCIES(CXX)],
[define([AC_PROG_CXX],
- defn([AC_PROG_CXX])[AM_DEPENDENCIES(CXX)])])dnl
+ defn([AC_PROG_CXX])[AM_DEPENDENCIES(CXX)
+])])dnl
])
I tried to rerun with this change but I got the same error.
Mo DeJong
Red Hat Inc