aboutsummaryrefslogtreecommitdiff
path: root/crypto/kerberosIV/cf/need-proto.m4
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-06-25 00:20:49 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-06-25 00:20:49 +0000
commitb4d1edeb37a573694fb661e8da9631ce60473a8d (patch)
treed60a940b78ccfa7028d8cb64ada3fc11fa35cfbb /crypto/kerberosIV/cf/need-proto.m4
parent2c6b0cc3165d3f4bd4fd1e511e7af57822522009 (diff)
downloadsrc-release/3.5.0.tar.gz
src-release/3.5.0.zip
This commit was manufactured by cvs2svn to create tagrelease/3.5.0
'RELENG_3_5_0_RELEASE'.
Diffstat (limited to 'crypto/kerberosIV/cf/need-proto.m4')
-rw-r--r--crypto/kerberosIV/cf/need-proto.m425
1 files changed, 0 insertions, 25 deletions
diff --git a/crypto/kerberosIV/cf/need-proto.m4 b/crypto/kerberosIV/cf/need-proto.m4
deleted file mode 100644
index 8c8d1d349081..000000000000
--- a/crypto/kerberosIV/cf/need-proto.m4
+++ /dev/null
@@ -1,25 +0,0 @@
-dnl $Id: need-proto.m4,v 1.2 1999/03/01 09:52:24 joda Exp $
-dnl
-dnl
-dnl Check if we need the prototype for a function
-dnl
-
-dnl AC_NEED_PROTO(includes, function)
-
-AC_DEFUN(AC_NEED_PROTO, [
-if test "$ac_cv_func_$2+set" != set -o "$ac_cv_func_$2" = yes; then
-AC_CACHE_CHECK([if $2 needs a prototype], ac_cv_func_$2_noproto,
-AC_TRY_COMPILE([$1],
-[struct foo { int foo; } xx;
-extern int $2 (struct foo*);
-$2(&xx);
-],
-eval "ac_cv_func_$2_noproto=yes",
-eval "ac_cv_func_$2_noproto=no"))
-define([foo], [NEED_]translit($2, [a-z], [A-Z])[_PROTO])
-if test "$ac_cv_func_$2_noproto" = yes; then
- AC_DEFINE(foo, 1, [define if the system is missing a prototype for $2()])
-fi
-undefine([foo])
-fi
-])