From bf36df14edf280eabc391a90c5d9cd126dcb51c1 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Thu, 14 Feb 2002 13:41:39 +0000 Subject: [PATCH] not used git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10836 ec53bebd-3082-4978-b11e-865c3cabbd6b --- cf/grok-type.m4 | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 cf/grok-type.m4 diff --git a/cf/grok-type.m4 b/cf/grok-type.m4 deleted file mode 100644 index 360f6c31e..000000000 --- a/cf/grok-type.m4 +++ /dev/null @@ -1,38 +0,0 @@ -dnl $Id$ -dnl -AC_DEFUN(AC_GROK_TYPE, [ -AC_CACHE_VAL(ac_cv_type_$1, -AC_TRY_COMPILE([ -#ifdef HAVE_INTTYPES_H -#include -#endif -#ifdef HAVE_SYS_TYPES_H -#include -#endif -#ifdef HAVE_SYS_BITYPES_H -#include -#endif -#ifdef HAVE_BIND_BITYPES_H -#include -#endif -#ifdef HAVE_NETINET_IN6_MACHTYPES_H -#include -#endif -], -$i x; -, -eval ac_cv_type_$1=yes, -eval ac_cv_type_$1=no))]) - -AC_DEFUN(AC_GROK_TYPES, [ -for i in $1; do - AC_MSG_CHECKING(for $i) - AC_GROK_TYPE($i) - eval ac_res=\$ac_cv_type_$i - if test "$ac_res" = yes; then - type=HAVE_[]upcase($i) - AC_DEFINE_UNQUOTED($type) - fi - AC_MSG_RESULT($ac_res) -done -])