diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-11-23 10:29:44 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-19 18:51:26 -0800 |
commit | af15f44aabf3fccf096e04d73f4e6e2fd8ca3771 (patch) | |
tree | 0084d809d4fb467c570b605ba5b94320bcb9c480 | |
parent | b3e36bd9e5c72f4d8045b13ec066826545560361 (diff) |
configure: Use AC_SYS_LARGEFILE to enable large file support
While X bitmap 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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9f84e22..69634ed 100644 --- a/configure.ac +++ b/configure.ac @@ -39,6 +39,10 @@ XORG_DEFAULT_OPTIONS AM_PROG_CC_C_O +# Checks for typedefs, structures, and compiler characteristics. +AC_SYS_LARGEFILE + +# Checks for library functions. AC_CHECK_FUNCS([mkstemp]) # Math libraries & functions |