| I just updated to todays CVS autoconf and now AC_CHECKING seems to be
| broken. The line:
|
| AC_CHECKING(for ZLIB support ...)
|
| results in this configure code:
|
| echo "configure:4389: notice: checking for ZLIB support ......" >&5
| echo "checking for ZLIB support ......" >&6(for ZLIB support ...)
|
| Is there a fix for this?
Thanks, it's an actual stupid bug... I'm applying this:
2000-11-07 Akim Demaille <[EMAIL PROTECTED]>
* acgeneral.m4 (AC_CHECKING): Is not an alias of AC_MSG_NOTICE,
hence use AU_DEFUN, not AU_ALIAS.
< # AU::AC_CHECKING(FEATURE)
< # ------------------------
< AU_ALIAS([AC_CHECKING],
< [AC_MSG_NOTICE([checking $1...])])
<
> # AU::AC_CHECKING(FEATURE)
> # ------------------------
> AU_DEFUN([AC_CHECKING],
> [AC_MSG_NOTICE([checking $1...])])