diff options
author | Matt Turner <mattst88@gmail.com> | 2022-11-29 12:02:21 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2022-11-29 12:02:21 -0500 |
commit | 10f76cc702e0877743e21241b897ab93010367a2 (patch) | |
tree | 5d50cc8c8c59c94a8e9c459863d7a53b5c303264 /configure.ac | |
parent | 4fbefa02d6c842401ff79065d364edd7087a12a6 (diff) |
configure: Use AC_SYS_LARGEFILE to enable large file support
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 93d3281..eb5235b 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,9 @@ AC_CHECK_FUNCS([explicit_bzero pathconf]) # Obtain compiler/linker options for dependencies PKG_CHECK_MODULES(XAU, xproto) +# Checks for typedefs, structures, and compiler characteristics. +AC_SYS_LARGEFILE + AC_ARG_ENABLE(xthreads, AS_HELP_STRING([--disable-xthreads], [Disable libXau support for Multithreading]), |