summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1999-02-05 00:49:27 +0000
committerJeremy Allison <jra@samba.org>1999-02-05 00:49:27 +0000
commitf285470006ad0219970f3046fc5c426328b7ebb6 (patch)
tree00e6847576859f3ffad0e885be21d7c871b76044
parent6fe4790b6931fe974755f59405da617c1130359f (diff)
downloadsamba-f285470006ad0219970f3046fc5c426328b7ebb6.tar.gz
samba-f285470006ad0219970f3046fc5c426328b7ebb6.tar.xz
samba-f285470006ad0219970f3046fc5c426328b7ebb6.zip
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.
-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_