summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-19 19:11:00 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-20 19:16:02 -0800
commit9a63cbccd03b643622df89a0fda4e81c2f523c7d (patch)
treec4985e69325bad76540838456c28cf94a0c7e6ba
parenta992510baba1ae46f0c1a4013f955cc74ecb212e (diff)
configure: Use AC_SYS_LARGEFILE to enable large file support
While font 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 ca64ddc..c08e2d6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -48,6 +48,9 @@ if test "x$with_bzip2" = xyes; then
AC_DEFINE(X_BZIP2_FONT_COMPRESSION,1,[Support bzip2 for bitmap fonts])
fi
+# Checks for typedefs, structures, and compiler characteristics.
+AC_SYS_LARGEFILE
+
# Checks for system functions / libraries
AC_CHECK_FUNCS([vasprintf])