summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsource/configure6
-rw-r--r--source/configure.in6
2 files changed, 6 insertions, 6 deletions
diff --git a/source/configure b/source/configure
index 048ea065f29..50e11200ed1 100755
--- a/source/configure
+++ b/source/configure
@@ -9496,8 +9496,8 @@ fi
# As a gating factor for large file support, in order to
# use <4GB files we must have the following minimal support
# available.
-# long long, a 64 bit off_t or off64_t, a 64 bit ino_t or
-# ino64_t. If we don't have all of these then disable large
+# long long, and a 64 bit off_t or off64_t.
+# If we don't have all of these then disable large
# file support.
#
echo "checking if large file support can be enabled"
@@ -9505,7 +9505,7 @@ cat > conftest.$ac_ext <<EOF
#line 9506 "configure"
#include "confdefs.h"
-#if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))) && (defined(HAVE_INO64_T) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8)))
+#if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8)))
#include <sys/types.h>
#else
__COMPILE_ERROR_
diff --git a/source/configure.in b/source/configure.in
index 652b8ec5eba..6809d2fe8fc 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -1464,13 +1464,13 @@ fi
# As a gating factor for large file support, in order to
# use <4GB files we must have the following minimal support
# available.
-# long long, a 64 bit off_t or off64_t, a 64 bit ino_t or
-# ino64_t. If we don't have all of these then disable large
+# long long, and a 64 bit off_t or off64_t.
+# If we don't have all of these then disable large
# file support.
#
echo "checking if large file support can be enabled"
AC_TRY_COMPILE([
-#if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))) && (defined(HAVE_INO64_T) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8)))
+#if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8)))
#include <sys/types.h>
#else
__COMPILE_ERROR_