summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog2
-rw-r--r--src/include/configure.in11
2 files changed, 13 insertions, 0 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 1fa8e9eb6..45d284d24 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -1,5 +1,7 @@
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.
diff --git a/src/include/configure.in b/src/include/configure.in
index c9036ff0b..cfca33449 100644
--- a/src/include/configure.in
+++ b/src/include/configure.in
@@ -199,4 +199,15 @@ else
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)