this is fixed... i removed the acconfig.h file and went through every AC_DEFINE and AC_DEFINE_UNQUOTED and put a third argument
e.g. AC_DEFINE(LINUX) became AC_DEFINE(LINUX,1,LINUX) -matt > the newest versions of autoheader is complaining > > WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot' > WARNING: and `config.h.top', to define templates for `config.h.in' > WARNING: is deprecated and discouraged. > > WARNING: Using the third argument of `AC_DEFINE' and > WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without > WARNING: `acconfig.h': > > WARNING: AC_DEFINE([NEED_MAIN], 1, > WARNING: [Define if a function `main' is needed.]) > > WARNING: More sophisticated templates can also be produced, see the > WARNING: documentation. > > so i'll take a look and clean that up (unless someone else beats me to > it).
