Thien-Thi Nguyen wrote:
Fred Proctor <[EMAIL PROTECTED]> writes:
How can one get AC_DEFINE to define a variable with an argument
list? I want to do something like this:
AC_DEFINE(incr(x),((x)+1),"increment")
i think either you misunderstand AC_DEFINE or i misunderstand you.
where in the doc
Fred Proctor <[EMAIL PROTECTED]> writes:
> How can one get AC_DEFINE to define a variable with an argument
> list? I want to do something like this:
>
> AC_DEFINE(incr(x),((x)+1),"increment")
i think either you misunderstand AC_DEFINE or i misunderstand you.
where in the documentation is the po
How can one get AC_DEFINE to define a variable with an argument list? I
want to do something like this:
AC_DEFINE(incr(x),((x)+1),"increment")
The parens in the value part, ((x)+1), go across OK. The parens in the
variable part, incr(x), are killing me.
--Fred