At Sat, 17 Feb 2007 10:19:09 +0100,
Jari H�kkinen wrote:
Running autogen.sh I get the following complaint from automake
configure.ac:7: `automake requires `AM_CONFIG_HEADER', not
`AC_CONFIG_HEADER'
This is trivially resolved by changing line 7 in configure.ac from
AC_CONFIG_HEADERS([config.h])
to
AM_CONFIG_HEADER([config.h])
I am using the latest GSL checked out from CVS trunk.
Hello,
Thanks for the email. What version of automake are you using? Here
is what it says in the Automake 1.9.6 manual.
`AC_CONFIG_HEADERS'
Automake will generate rules to rebuild these headers. Older
versions of Automake required the use of `AM_CONFIG_HEADER' (*note
Macros::); this is no longer the case today.