From 7700f8a262a2c3873199b27a56af30ede12499c3 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 9 Aug 2011 12:52:26 +0400 Subject: [PATCH] Ticket #2580: file size column is bogus for widths above 9. Initial step: detect uintmax_t type and sizeof(uintmax_t) in configure.ac. Signed-off-by: Andrew Borodin --- configure.ac | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index f009742a2..7b6384bd8 100644 --- a/configure.ac +++ b/configure.ac @@ -193,26 +193,28 @@ AC_DEFINE(IS_AIX, 1, [Define if compiling for AIX]) AC_MSG_RESULT(yes) ], [AC_MSG_RESULT(no)]) -dnl -dnl This is from GNU fileutils, check aclocal.m4 for more information -dnl -AC_GET_FS_INFO - dnl dnl Missing typedefs and replacements dnl AC_CHECK_SIZEOF(long) -AC_CHECK_SIZEOF(long long) -AC_TYPE_MODE_T +AC_TYPE_UINTMAX_T +AC_CHECK_SIZEOF(uintmax_t) AC_TYPE_OFF_T AC_CHECK_SIZEOF(off_t) +AC_TYPE_MODE_T AC_TYPE_PID_T AC_TYPE_UID_T AC_FUNC_ALLOCA AC_FUNC_STRCOLL +dnl +dnl This is from GNU fileutils, check aclocal.m4 for more information +dnl uintmat_t is required for FS info +dnl +AC_GET_FS_INFO + dnl dnl X11 support. dnl Used to read keyboard modifiers when running under X11.