I've been thinking about replacing the dist-based Configure script with
an autoconf-based configure.
Pros:
autoconf is the de facto standard configuration tool; people are
familiar with it.
autoconf itself is thus widely installed (Unlike dist, which I think
only us and maybe perl still use), which makes editing the configure
script easier for developers and patch writers.
Adding new tests is less work with autoconf than it is dist. It usually
takes just a line or two in configure.in, compared to making a whole new
file in the configuration rule directory.
There's a bunch of un-needed tests in what we use now that can be
eliminated in the switch.
Cons:
It'll take some work; dist defines things like HAS_FOO, autoconf HAVE_FOO.
autoconf doesn't encourage cutesy little messages that give the
configure script personality.
Your thoughts?