From f285470006ad0219970f3046fc5c426328b7ebb6 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 5 Feb 1999 00:49:27 +0000 Subject: [PATCH] Allow large file support to succeed even if ino_t isn't 64 bits and there's no ino64_t. AIX has large file support and doesn't use a 64 bit ino_t. Jeremy. --- source/configure | 6 +++--- source/configure.in | 6 +++--- 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 < #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 #else __COMPILE_ERROR_ -- 2.47.3