diff options
author | John Criswell <criswell@uiuc.edu> | 2004-09-02 18:44:44 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2004-09-02 18:44:44 +0000 |
commit | 679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4 (patch) | |
tree | 976628992fdba8a987683fc225ed681c201f079c /autoconf | |
parent | 61905ce599f8cc890430710f0cc8ca6009efc409 (diff) | |
download | external_llvm-679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4.zip external_llvm-679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4.tar.gz external_llvm-679ff31e93fb99799e7cefd4dddadf8d1b1cd7d4.tar.bz2 |
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.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 86cf136..7cf02a1 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 |