summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-01-21 09:34:27 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-01-21 09:34:27 -0800
commit369a038ab70860a051f785e95c06f681eabea32a (patch)
tree850c7f61ff5439deee9cb5262887ed174291a201
parentee1d1c10f4c966b39689d0fe0e602cabb47d72e8 (diff)
configure: Use AC_SYS_LARGEFILE to enable large file support
While X window dump files should never be more than 2gb in size, they may be stored on filesystems with large inodes or timestamps. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e00473a..5b10e2d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,6 +37,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 pkg-config packages
PKG_CHECK_MODULES(XPR, [xmuu x11 xproto >= 7.0.25])