diff options
author | Matt Turner <mattst88@gmail.com> | 2022-11-29 12:07:53 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2022-11-29 12:07:53 -0500 |
commit | b7c76402831a91a4f0867c03e2f403c9c4c7dca1 (patch) | |
tree | 6f7deaa3da0228677d744217f093a6979113ab12 | |
parent | f855ea9cf3aecc74c3b07da924ff2e36944e4be1 (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 51dc3bf..0845c4b 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,9 @@ AC_CHECK_FUNC(getc_unlocked, AC_DEFINE([HAVE_UNLOCKED_STDIO], 1, # Obtain compiler/linker options for dependencies PKG_CHECK_MODULES(XKBFILE, x11 kbproto) +# Checks for typedefs, structures, and compiler characteristics. +AC_SYS_LARGEFILE + AC_CONFIG_FILES([Makefile src/Makefile xkbfile.pc]) |