summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/cf/broken2.m4
blob: 78a3dcbc357e4e3e565a41f2b3c122664ca1d7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
dnl $Id: broken2.m4,v 1.1 2000/12/15 14:27:33 assar Exp $
dnl
dnl AC_BROKEN but with more arguments

dnl AC_BROKEN2(func, includes, arguments)
AC_DEFUN(AC_BROKEN2,
[for ac_func in $1
do
AC_MSG_CHECKING([for $ac_func])
AC_CACHE_VAL(ac_cv_func_$ac_func,
[AC_TRY_LINK([$2],
[
/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_$1) || defined (__stub___$1)
choke me
#else
$ac_func($3)
#endif
], [eval "ac_cv_func_$ac_func=yes"], [eval "ac_cv_func_$ac_func=no"])])
if eval "test \"\${ac_cv_func_$ac_func}\" = yes"; then
  ac_tr_func=HAVE_[]upcase($ac_func)
  AC_DEFINE_UNQUOTED($ac_tr_func)
  AC_MSG_RESULT(yes)
else
  AC_MSG_RESULT(no)
  LIBOBJS[]="$LIBOBJS ${ac_func}.o"
fi
done
if false; then
	AC_CHECK_FUNCS($1)
fi
AC_SUBST(LIBOBJS)dnl
])
OpenPOWER on IntegriCloud