From 0a96e3a4e174425627020b93565041cfcaa746ab Mon Sep 17 00:00:00 2001 From: panne Date: Sat, 6 Nov 2004 14:15:06 +0000 Subject: [PATCH] [project @ 2004-11-06 14:15:06 by panne] * Re-enable large file support * No need to test for lchown here --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8205f0e..558f28f 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,9 @@ AC_CHECK_TYPES([long long]) # check for specific header (.h) files that we are interested in AC_CHECK_HEADERS([ctype.h fcntl.h signal.h sys/resource.h termios.h time.h]) -AC_CHECK_HEADER([unistd.h], [AC_CHECK_FUNCS(lchown)]) +# Enable large file support. Do this before testing the types ino_t, off_t, and +# rlim_t, because it will affect the result of that test. +AC_SYS_LARGEFILE # map standard C types and ISO types to Haskell types FPTOOLS_CHECK_HTYPE(char) -- 1.7.10.4