aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-04-10 18:22:47 +0000
committerGuy Harris <guy@alum.mit.edu>2011-04-10 18:22:47 +0000
commitc349caf925ce533d403a6c3dd4380c30d6552ea7 (patch)
tree47be42075ef0ca489ee8fb4e6427977c9d2fefd9 /configure.in
parentd7d45f8072523ecca0c6823bf3f55b7f61134d92 (diff)
Use AC_SYS_LARGEFILE to turn on large file support on platforms that
support it. Rename ws_lseek to ws_lseek64, as it should be given a 64-bit offset, and have it use _lseeki64 on Windows, to try to get 64-bit offset support; AC_SYS_LARGEFILE should cause lseek() to support 64-bit offsets on UN*X if possible. svn path=/trunk/; revision=36542
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 8db1d08000..1da5ce6830 100644
--- a/configure.in
+++ b/configure.in
@@ -138,6 +138,11 @@ AC_PATH_PROG(DOXYGEN, doxygen)
AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, "yes", "no")
AM_CONDITIONAL(HAVE_DOXYGEN, test x$HAVE_DOXYGEN = xyes)
+#
+# Try to arrange for large file support.
+#
+AC_SYS_LARGEFILE
+
# gnu tls
tls_message="no"
AC_ARG_WITH([gnutls],