我想在 a 中重新组合多个语句[]
:
AC_ARG_WITH(
[float],
[AS_HELP_STRING(
[--with-float],
[use float instead of doubles to store polynoms coefficients])],
[real=float], <--- here I'd like to add an AC_DEFINE
[real=double])
我的问题是,我不确定最好的方法。我想我可以使用;
,但这对于m4sh
脚本来说似乎并不真正地道。