summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorZbigniew Jedrzejewski-Szmek <zbyszek@in.waw.pl>2014-05-15 18:42:28 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-05-15 19:34:56 -0400
commitf8e5fbd9c8b209e556c017bfb420a86e8181dfa7 (patch)
treee6488b61b93e5e69c161475a6c62f2bfbd146f00 /configure.ac
parentdb992ba3a71f320faab8f90de77ef081305917bb (diff)
Remove unnecessary casts in printfs
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 1ed3aa1ea7..1a31faa78e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,6 +66,14 @@ AC_CHECK_DECLS([gettid, name_to_handle_at, accept4, mkostemp], [], [], [[#includ
#include <fcntl.h>
#include <sys/socket.h>]])
+AC_CHECK_SIZEOF(pid_t)
+AC_CHECK_SIZEOF(uid_t)
+AC_CHECK_SIZEOF(gid_t)
+AC_CHECK_SIZEOF(time_t)
+AC_CHECK_SIZEOF(rlim_t,,[
+ #include <sys/time.h>
+ #include <sys/resource.h>
+])
# Checks for library functions.
AC_FUNC_CHOWN