summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-08 11:57:44 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-09 11:57:39 -0800
commitba4c183d8721f3ef086fb1d15881bb9aeeb4ecd4 (patch)
tree69a5af97ef98a21fe07519d23b42bcd062ec1704
parent0ea496769469da48aebce7d95b79b4db373cda24 (diff)
downloadiceauth-master.tar.gz
configure: Use AC_SYS_LARGEFILE to enable large file supportHEADmaster
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.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index a051589..a7998b2 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(ICEAUTH, [xproto >= 7.0.22 ice])