Initial import from FreeBSD RELENG_4:
[dragonfly.git] / crypto / kerberosIV / cf / need-proto.m4
1 dnl $Id: need-proto.m4,v 1.2 1999/03/01 09:52:24 joda Exp $
2 dnl
3 dnl
4 dnl Check if we need the prototype for a function
5 dnl
6
7 dnl AC_NEED_PROTO(includes, function)
8
9 AC_DEFUN(AC_NEED_PROTO, [
10 if test "$ac_cv_func_$2+set" != set -o "$ac_cv_func_$2" = yes; then
11 AC_CACHE_CHECK([if $2 needs a prototype], ac_cv_func_$2_noproto,
12 AC_TRY_COMPILE([$1],
13 [struct foo { int foo; } xx;
14 extern int $2 (struct foo*);
15 $2(&xx);
16 ],
17 eval "ac_cv_func_$2_noproto=yes",
18 eval "ac_cv_func_$2_noproto=no"))
19 define([foo], [NEED_]translit($2, [a-z], [A-Z])[_PROTO])
20 if test "$ac_cv_func_$2_noproto" = yes; then
21         AC_DEFINE(foo, 1, [define if the system is missing a prototype for $2()])
22 fi
23 undefine([foo])
24 fi
25 ])