xref: /minix/crypto/external/bsd/heimdal/dist/cf/broken.m4 (revision ebfedea0)
1dnl Id
2dnl
3dnl
4dnl Same as AC _REPLACE_FUNCS, just define HAVE_func if found in normal
5dnl libraries
6
7AC_DEFUN([AC_BROKEN],
8[AC_FOREACH([rk_func], [$1],
9	[AC_CHECK_FUNC(rk_func,
10		[AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_[]rk_func), 1,
11			[Define if you have the function `]rk_func['.])],
12		[rk_LIBOBJ(rk_func)])])])
13