diff options
author | Matt Turner <mattst88@gmail.com> | 2022-11-29 12:05:32 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2022-11-29 12:05:32 -0500 |
commit | ec2ef12a0daf7bea60e9616ea8bc4bd61f3cf36f (patch) | |
tree | 4b2c4fcdc7a363dc2193e74c20b6aa216cdd273f | |
parent | c8f8ce35a5eafe8ca0d1ed3dfdd098fe0943b99c (diff) |
configure: Use AC_SYS_LARGEFILE to enable large file support
Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0c78027..e2a07c7 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,9 @@ AC_CHECK_LIB(z, gzclose, [], # Obtain compiler/linker options for dependencies PKG_CHECK_MODULES(FONTENC, xproto) +# Checks for typedefs, structures, and compiler characteristics. +AC_SYS_LARGEFILE + # Checks for library functions. AC_REPLACE_FUNCS([reallocarray]) |