diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-19 19:11:00 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-20 19:16:02 -0800 |
commit | 9a63cbccd03b643622df89a0fda4e81c2f523c7d (patch) | |
tree | c4985e69325bad76540838456c28cf94a0c7e6ba | |
parent | a992510baba1ae46f0c1a4013f955cc74ecb212e (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.ac | 3 |
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]) |