1 AC_DEFUN([hs_ULONG_CONST],
2 [ AH_TEMPLATE(ULONG_CONST, [How do we create unsigned long constants?])
4 [#define ACAT(a,b)a ## b
6 ], AC_DEFINE([ULONG_CONST(a)], [a ## UL]),
8 [#define RCAT(a,b)a/**/b
10 ], AC_DEFINE([ULONG_CONST(a)], [a/**/L]),
11 AC_MSG_ERROR([How do we create an unsigned long constant?])))])