Tom Tromey <[EMAIL PROTECTED]> writes:
| Jim> I'll check it in tomorrow unless I hear an objection.
|
| Jim> * automake.in (scan_one_configure_file): Recognize AC_LIBOBJ.
|
| Please do. Thanks Jim.
| In general patches that help automake interoperate with the current
| autoconf don't require any debate -- they should just go in. The only
| exception is if the patch breaks compatability with the current
| released autoconf.
Thanks.
Here's the patch I'll actually check in:
I just noticed that using brackets here doesn't work with autoconf,
so of course there's no point in having automake accepting that syntax.
Index: automake.in
===================================================================
RCS file: /cvs/automake/automake/automake.in,v
retrieving revision 1.786
diff -u -p -r1.786 automake.in
--- automake.in 2000/05/12 00:02:29 1.786
+++ automake.in 2000/07/02 18:48:32
@@ -4373,6 +4373,10 @@ sub scan_one_configure_file
}
}
}
+ elsif (/AC_LIBOBJ\((.*)\)/)
+ {
+ $libsources{"$1.c"} = 1;
+ }
if (! $in_ac_replace && s/AC_REPLACE_FUNCS\s*\(\[?//)
{