2003-08-26 Ken Raeburn <raeburn@mit.edu>
+ * configure.in: Check for some C99 headers and types.
+
* fake-addrinfo.h (inline): Supported by Sun Forte Developer 7
compiler.
fi
AC_SUBST(maybe_kerberosIV)
dnl
+dnl Not used yet, but let's find out what we've got on the platforms
+dnl we're working with....
+AC_CHECK_HEADERS(inttypes.h stdint.h)
+AC_CHECK_TYPES([uint64_t, int64_t, uint_least32_t, uintptr_t, uintmax_t, long long], , , [
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#elif defined(HAVE_INTTYPES_H)
+# include <inttypes.h>
+#endif
+])
+dnl
V5_AC_OUTPUT_MAKEFILE(. krb5 kerberosIV)