blob: 1c8db72a270457303d82b641ef4c5518174fa5f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
dnl $Id$
dnl
dnl
dnl Same as AC _REPLACE_FUNCS, just define HAVE_func if found in normal
dnl libraries
AC_DEFUN([AC_BROKEN],
[AC_FOREACH([rk_func], [$1],
[AC_CHECK_FUNC(rk_func,
[AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_[]rk_func), 1,
[Define if you have the function `]rk_func['.])],
[rk_LIBOBJ(rk_func)])])])
|