diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-11-23 10:29:44 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-11-23 10:29:44 -0800 |
commit | f032db0964e6d73b4f3c3264c1f8fbbb023fdf4c (patch) | |
tree | a42ba1ae233ea9150bc00d60cf6f464295588dda | |
parent | dd207b23f8d8ffe36e6727c813372a7858aafd02 (diff) |
configure: Use AC_SYS_LARGEFILE to enable large file support
The only files libICE operates on are .ICEauthority files, which
it only uses internally and does not make available to other code,
so there is no concern about ABI mismatch here.
While .ICEauthority files should never be more than 2gb in size,
they may be stored on filesystems with large inodes.
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 328f95f..8b9683e 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,9 @@ XORG_CHECK_SGML_DOCTOOLS(1.8) # Obtain compiler/linker options for dependencies PKG_CHECK_MODULES(ICE, [xproto >= 7.0.25 xtrans]) +# Checks for typedefs, structures, and compiler characteristics. +AC_SYS_LARGEFILE + # Checks for non-standard functions and fallback to libbsd if we can # We only check for arc4random_buf, because if we have that, we don't # need/use getentropy. |