Sam Steingold wrote: > if I remove the explicit call to gt_LC_MESSAGES > (which is called by AM_INTL_SUBDIR > which is called by AM_GNU_GETTEXT which we call explicitly) > then config.h.in no longer contains > #undef HAVE_LC_MESSAGES > > why?
This is indeed unexpected. I believe it must be related to the way 'autoheader' is invoked within clisp. > also, the comment for > #undef HAVE_LIBSIGSEGV > now reads "Define if you have the lib[]sigsegv library." which looks bizarre. Oops, right. Fixed as follows: 2009-06-24 Bruno Haible <br...@clisp.org> * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of HAVE_LIB${NAME} macro. Reported by Sam Steingold <s...@gnu.org>. --- m4/lib-link.m4.orig 2009-06-24 12:15:18.000000000 +0200 +++ m4/lib-link.m4 2009-06-24 12:11:56.000000000 +0200 @@ -82,7 +82,7 @@ ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes - AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib[]$1 library.]) + AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else