Hi Simon, * Simon Josefsson wrote on Fri, Mar 09, 2007 at 02:34:58PM CET: > ,---- > | Although using some of the following macros was required in past > | releases, you should not used any of them in new code. Running > | `autoupdate' should adjust your `configure.ac' automatically (*note > | Using `autoupdate' to Modernize `configure.ac': (autoconf)autoupdate > | Invocation.). [...] > But autoupdate doesn't seem to do this:
For me, autoupdate does replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS. The key to getting it to do this right is that you have to run aclocal so that the AU_DEFUN([AM_CONFIG_HEADER], ...) from your non-ancient Automake installation is then visible by autoupdate (i.e., copied in aclocal.m4). So you need to use aclocal-1.7 or newer. Hope that helps. Cheers, Ralf
