From: Simon McVittie Date: Mon, 8 Feb 2016 17:25:38 +0000 (+0000) Subject: configure.ac: support large-file for stat64 X-Git-Tag: dbus-1.10.8~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96ffc2a07eb10c0265b654ade972c66e39f9fafb;p=thirdparty%2Fdbus.git configure.ac: support large-file for stat64 dbus-daemon is not expected to open files with large *sizes*, but without large file support, calling [f]stat() on a file that happens to have a large inode number will fail with EOVERFLOW (see stat(2)). For example, files mounted from an NFS server might have large inode numbers. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=93545 Signed-off-by: Hongxu Jia [smcv: shorten and clarify commit message; move AC_SYS_LARGEFILE after AC_USE_SYSTEM_EXTENSIONS because nothing should compile C before that point] Reviewed-by: Simon McVittie --- diff --git a/configure.ac b/configure.ac index e8e4f808f..5e883435c 100644 --- a/configure.ac +++ b/configure.ac @@ -65,6 +65,7 @@ AC_PROG_CC AM_PROG_CC_C_O AC_PROG_CXX AC_USE_SYSTEM_EXTENSIONS +AC_SYS_LARGEFILE AC_ISC_POSIX AC_HEADER_STDC AC_C_INLINE