Tenho o seguinte em configure.ac:
AC_CHECK_PROGS(MAKE,$MAKE make gmake,error)
if test "x$MAKE" = "xerror" ;then
AC_MSG_ERROR([cannot find a make command])
fi
Isso está em nosso projeto há muito tempo, mas em algumas configurações, recebo este erro:
configure.ac:45: error: possibly undefined macro: AC_MSG_ERROR
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
As linhas que foram adicionadas recentemente acima disso:
AC_CONFIG_MACRO_DIR([m4])
LT_INIT
Alguém pode explicar o que causa esse erro e como rastrear o problema?
EDIT: Adicionando detalhes sobre as diferenças.
Caixa que funciona:
uname -a Linux host1 2.6.38-13-generic #53-Ubuntu SMP Mon Nov 28 19:33:45 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux
automake: 1.11.1
autoconf: 2.67
m4: 1.4.14
libtoolize: 2.2.6b
Caixa que não funciona:
Linux host2 2.6.32-35-generic-pae #78-Ubuntu SMP Tue Oct 11 17:01:12 UTC 2011 i686 GNU/Linux
automake: 1.11.1
autoconf: 2.65
m4: 1.4.13
libtoolize: 2.2.6b
NOVA EDIÇÃO: apenas máquinas de 32 bits têm essa dificuldade.
Atualizado eu sou capaz de reproduzir o problema em uma máquina CentOS com autoconf 2.67
, automake 1.11.1
, libtool 2.2.6b
, e m4 1.4.14
. Isso é apenas um bug em máquinas de 32 bits?