1
1

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 <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2011-08-09 12:52:26 +04:00
родитель 4aebb59549
Коммит 7700f8a262

Просмотреть файл

@ -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.