From 6d5ea7426baceea307febbafa5d40099f97e0b3a 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. (cherry picked from commit 7700f8a262a2c3873199b27a56af30ede12499c3) Signed-off-by: Andrew Borodin --- configure.ac | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 3430ed45e..4f2eab933 100644 --- a/configure.ac +++ b/configure.ac @@ -184,19 +184,15 @@ 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_CHECK_TYPE(nlink_t, unsigned int) @@ -216,6 +212,12 @@ 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. AC_PATH_XTRA -- 2.11.4.GIT