我想在一个[]
中重新组合多个语句:
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
脚本的惯用语。
使用换行符:
AC_ARG_WITH(
[float],
[AS_HELP_STRING(
[--with-float],
[use float instead of doubles to store polynoms coefficients])],
[real=float]
[AC_DEFINE....],
[real=double])
通常将其写为:
AC_ARG_WITH([
float
],[
AS_HELP_STRING(
[--with-float],
[use float instead of doubles to store polynoms coefficients])
],[
real=float
AC_DEFINE....
],[
real=double
])