diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-23 18:17:04 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-23 18:17:04 -0800 |
commit | f971deabd26413efd6fa87c0c3ab2952bae163bf (patch) | |
tree | 1d0a54d21a86a799d65a1db39faeb920ea1b6ef1 | |
parent | ebcdc687d02e34240bd98b9f1396225eee4e4240 (diff) |
configure: Use AC_SYS_LARGEFILE to enable large file support
Handle files whose sizes, inode numbers, or timestamps may be
out of range of the original 32-bit APIs
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 347249b..ed5b51f 100644 --- a/configure.ac +++ b/configure.ac @@ -39,6 +39,9 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS +# Checks for typedefs, structures, and compiler characteristics. +AC_SYS_LARGEFILE + # Checks for library functions. AC_CHECK_FUNCS([asprintf]) |