Does anyone know why config.h has a macro for HAVE_G2C_H, but there is
no corresponding code in configure to check for/set it?
Is this something that needs to be done or is it obsolete?
--
Brad Douglas <rez touchofmadness com> KB8UYR/6
Address: 37.493,-121.924 / WGS84 National Map Corps #TNMC-3785
Brad Douglas wrote:
Does anyone know why config.h has a macro for HAVE_G2C_H, but there is
no corresponding code in configure to check for/set it?
Line 360 of configure.in:
AC_CHECK_HEADERS(limits.h termio.h termios.h unistd.h values.h g2c.h f2c.h)
The AC_CHECK_HEADERS macro defines the corresponding HAVE_* macro for
each header which is found.
--
Glynn Clements <glynn@gclements.plus.com>