aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorrl1987 <rl1987@sdf.lonestar.org>2019-03-22 12:57:58 +0200
committerrl1987 <rl1987@sdf.lonestar.org>2019-03-22 12:57:58 +0200
commit13b28063f9f2a3d2a587eabac358452a42277052 (patch)
tree20a149f6fc566576f0a526b5e82264629de272fd /configure.ac
parent72e0dc0822deb8587b3cae2edf584ece13cb6bb8 (diff)
downloadtor-13b28063f9f2a3d2a587eabac358452a42277052.tar.gz
tor-13b28063f9f2a3d2a587eabac358452a42277052.zip
Compile time check for being able to fit {unsigned} int inside void pointer
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6036cdffe5..8ac2d71e4f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1588,6 +1588,7 @@ AC_CHECK_MEMBERS([struct timeval.tv_sec], , ,
AC_CHECK_SIZEOF(char)
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
+AC_CHECK_SIZEOF(unsigned int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(__int64)