我在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
这已经存在于我们的项目中很长时间了,但是在某些设置中,我得到了这个错误:
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.
最近在此上方添加的行:
AC_CONFIG_MACRO_DIR([m4])
LT_INIT
谁能解释导致此错误的原因以及如何找出问题的原因?
编辑:添加有关差异的详细信息。
适用的盒子:
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
无效的盒子:
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
新编辑:只有32位计算机遇到此困难。
更新我能够重现问题CentOS的机器上autoconf 2.67
,automake 1.11.1
,libtool 2.2.6b
,和m4 1.4.14
。这仅仅是32位计算机的错误吗?