INN commit: trunk (configure.ac)

INN Commit Russ_Allbery at isc.org
Mon Mar 23 06:50:18 UTC 2009


    Date: Sunday, March 22, 2009 @ 23:50:17
  Author: iulius
Revision: 8390

The AC_FUNC_FSEEKO Autoconf macro changed and now defines
$ac_cv_sys_largefile_source instead of $ac_cv_func_fseek.
Support for large files has therefore been broken on a few
architectures (like FreeBSD) for a long time.

Modified:
  trunk/configure.ac

--------------+
 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: configure.ac
===================================================================
--- configure.ac	2009-03-18 21:09:16 UTC (rev 8389)
+++ configure.ac	2009-03-23 06:50:17 UTC (rev 8390)
@@ -503,7 +503,7 @@
 dnl Probe for fseeko and ftello, which take off_t instead of int.
 if test x"$inn_enable_largefiles" = xyes ; then
     AC_FUNC_FSEEKO
-    if test x"$ac_cv_func_fseeko" != xyes ; then
+    if test x"$ac_cv_sys_largefile_source" = xunknown ; then
         INN_TYPE_FPOS_T_LARGE
         AC_CHECK_DECLS([fseeko, ftello])
         AC_LIBOBJ([fseeko])




More information about the inn-committers mailing list