summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-09-02 18:44:44 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-09-02 18:44:44 +0000
commit679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4 (patch)
tree976628992fdba8a987683fc225ed681c201f079c /autoconf
parent61905ce599f8cc890430710f0cc8ca6009efc409 (diff)
downloadllvm-679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4.tar.gz
llvm-679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4.tar.bz2
llvm-679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4.tar.xz
Added a check for u_int64_t, which is used by Interix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 86cf136939..7cf02a197e 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -316,6 +316,7 @@ AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found]))
AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not found]))
+AC_CHECK_TYPES([u_int64_t])
AC_HEADER_TIME
AC_STRUCT_TM