Hi,
a bug has been introduced by one of the commits from the last day or
so. Upon this configure.in file
AC_INIT(configure.in)
AC_PROG_CC
autoconf (fresh from the head CVS) generates a configure script which
produces this output when run as "./configure CC=foobar"
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... cl
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking whether we are using the GNU C compiler... no
checking whether cl accepts -g... no
checking for object suffix... obj
checking for executable suffix... .exe
As you can see, the CC-variable is not heeded. Ouch.
Regards,
Morten