On Wed, Dec 27, 2006 at 11:59:29PM -0800, Paul Eggert wrote: > But there are at least two regressions here. First, the one reported > by Andrey Simonenko in > <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>, > where AC_DEFINE([DEF(x)], [somevalue]) does not work in Autoconf 2.61 > as it did in Autoconf 2.59.
I used a trick and my config.h.in had two lines: #undef DEF ... #define DEF(x) And autoconf-2.59 did not touch "#define DEF(x)". If it is allowed to specify only #undef lines in config.h.in, then my trick was wrong. May be more strict description (using words "must have only" or "must contain only") about what is allowed in config.h.in should be given in "Configuration Headers Templates".
