summaryrefslogtreecommitdiffstats
path: root/acconfig.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-06 18:53:34 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-06 18:53:34 (GMT)
commitf98e2a787eefef856fe22f00ace6604aae4b2934 (patch)
tree12c23bc6ac4f651ae0b199995a01c4170193dd66 /acconfig.h
parent00f0f6ef0319e338730baaee4773689064061709 (diff)
downloadcpython-f98e2a787eefef856fe22f00ace6604aae4b2934.zip
cpython-f98e2a787eefef856fe22f00ace6604aae4b2934.tar.gz
cpython-f98e2a787eefef856fe22f00ace6604aae4b2934.tar.bz2
Changes for long file support by Steve Clift.
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index deb9aa2..27c7b17 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -96,5 +96,17 @@
/* Define if you want to compile in rudimentary thread support */
#undef WITH_THREAD
+/* The number of bytes in an off_t. */
+#undef SIZEOF_OFF_T
+
+/* Defined to enable large file support when an off_t is bigger than a long
+ and long long is available and at least as big as an off_t. You may need
+ to add some flags for configuration and compilation to enable this mode.
+ E.g, for Solaris 2.7:
+ CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-O2 $CFLAGS" \
+ configure
+*/
+#undef HAVE_LARGEFILE_SUPPORT
+
/* Leave that blank line there-- autoheader needs it! */