summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-15 16:50:35 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-15 16:51:35 -0800
commit1d789120225d8ce63c368797e644cc9ccc003ce4 (patch)
tree51db5f5e04961486d022a6e88ad75c68d412a7a5
parent828185ebd754270c5391d5646d986fe0a82ced23 (diff)
configure: Use AC_SYS_LARGEFILE to enable large file support
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 32e0754..38301e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,8 +41,12 @@ XORG_PROG_RAWCPP
CPP_PROGRAM=${RAWCPP}
AC_SUBST(CPP_PROGRAM)
+# Checks for library functions.
AC_CHECK_FUNCS([mkstemp])
+# Checks for typedefs, structures, and compiler characteristics.
+AC_SYS_LARGEFILE
+
AC_CHECK_PROG(HAS_PERL, perl, yes)
AM_CONDITIONAL([HAS_PERL], [test "x$HAS_PERL" = xyes])