diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-08-11 21:16:13 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-08-11 21:16:13 +0000 |
commit | 58e2edfb24ed19427ec52d058ffa8aecb5a94cf8 (patch) | |
tree | bce1ba579a9c219004ead1328cfade9a1babded6 /configure.in | |
parent | 7284c25b3460790c3c0b61366c1b4350fc953746 (diff) | |
download | tor-58e2edfb24ed19427ec52d058ffa8aecb5a94cf8.tar.gz tor-58e2edfb24ed19427ec52d058ffa8aecb5a94cf8.zip |
Who would have thought that some systems define intfoo_t, but not uintfoo_t? Cygwin is such a system.
svn:r378
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 4338f2bd20..cf5ab525e0 100644 --- a/configure.in +++ b/configure.in @@ -137,12 +137,12 @@ AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/poll.h sy dnl These headers are not essential -AC_CHECK_HEADERS(stdint.h sys/types.h) +AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h) dnl In case we aren't given a working stdint.h, we'll need to grow our own. dnl Watch out. -AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t]) +AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t]) AC_CHECK_SIZEOF(char) AC_CHECK_SIZEOF(short) |