如何在 configure.ac 中为消息使用变量
if test "$foo" = "yes"; then
AC_MSG_ERROR([this string is being used in WARN as well as ERROR])
else
AC_MSG_WARN([this string is being used in WARN as well as ERROR])
fi
在变量中定义字符串“此字符串在 WARN 和 ERROR 中使用”然后在AC_MSG_WARN和AC_MSG_ERROR中使用该变量是有意义的。最好的方法是什么?
除此之外,m4 是否有任何宏可以通过将字符串和 $foo 作为参数来替换整个 if else ?