Dave wrote:
> I can't remove the define from acconfig.h or else autoheader will
> complain and COLOR_SUPPORT won't be defined even if I want it so.
Just list it as "#undef COLOR_SUPPORT" in acconfig.h. Better yet, in your
configure.in do AC_DEFINE(COLOR_SUPPORT, 1, [Define if you have color
support.]), and autoheader will include the #undef for you automatically.
See also the manual:
http://sourceware.cygnus.com/autoconf/autoconf.html#SEC16
Cordially,
Steven G. Johnson
- I want "#define FOO" not "#define FOO 1&q... Dave
- Steven G. Johnson
