> aclocal: configure.in: 76: macro `AM_GNU_GETTEXT' not found in library.
>
> Is this define somewhere? I downloaded and install the CVS version of
> automake 1.4e. The macro is called from configure.in file.
This is normally in a file called gettext.m4. There is probably an 'm4'
directory in the fetchmail tree; use 'aclocal -I m4' to include the
macros there.
> Autoheader gives me the error:
>
> No template for symbol `SYS_SIGLIST_DECLARED'
>
> I see that its in the configure.in but is that the template? What is a
> template?
There's probably
AC_DEFINE(SYS_SIGLIST_DECLARED, 1)
If you change this to
AC_DEFINE(SYS_SIGLIST_DECLARED, 1,
[Define if your system declares sys_siglist.])
autoheader will know what comment to add to the #define and will shut up.