Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
257fd514
Commit
257fd514
authored
Jan 07, 1999
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes for long file support.
parent
637ad47e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
config.h.in
config.h.in
+36
-0
No files found.
config.h.in
View file @
257fd514
...
...
@@ -151,6 +151,18 @@
/* 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
/* The number of bytes in a int. */
#undef SIZEOF_INT
...
...
@@ -181,12 +193,33 @@
/* Define if you have the execv function. */
#undef HAVE_EXECV
/* Define if you have the fdatasync function. */
#undef HAVE_FDATASYNC
/* Define if you have the flock function. */
#undef HAVE_FLOCK
/* Define if you have the fork function. */
#undef HAVE_FORK
/* Define if you have the fseek64 function. */
#undef HAVE_FSEEK64
/* Define if you have the fseeko function. */
#undef HAVE_FSEEKO
/* Define if you have the fstatvfs function. */
#undef HAVE_FSTATVFS
/* Define if you have the fsync function. */
#undef HAVE_FSYNC
/* Define if you have the ftell64 function. */
#undef HAVE_FTELL64
/* Define if you have the ftello function. */
#undef HAVE_FTELLO
/* Define if you have the ftime function. */
#undef HAVE_FTIME
...
...
@@ -289,6 +322,9 @@
/* Define if you have the sigrelse function. */
#undef HAVE_SIGRELSE
/* Define if you have the statvfs function. */
#undef HAVE_STATVFS
/* Define if you have the strdup function. */
#undef HAVE_STRDUP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment