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
216e404b
Commit
216e404b
authored
Feb 19, 2011
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#11184: Fix large file support on AIX.
parent
6e8d17c0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+8
-1
configure.in
configure.in
+6
-0
No files found.
Misc/NEWS
View file @
216e404b
...
@@ -18,6 +18,8 @@ Build
...
@@ -18,6 +18,8 @@ Build
- Issue #11222: Fix non-framework shared library build on Mac OS X.
- Issue #11222: Fix non-framework shared library build on Mac OS X.
- Issue #11184: Fix large-file support on AIX.
- Issue #941346: Fix broken shared library build on AIX.
- Issue #941346: Fix broken shared library build on AIX.
Documentation
Documentation
...
...
configure
View file @
216e404b
#! /bin/sh
#! /bin/sh
# From configure.in Revision: 884
26
.
# From configure.in Revision: 884
30
.
# Guess values for system-dependent variables and create Makefiles.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for python 3.2.
# Generated by GNU Autoconf 2.68 for python 3.2.
#
#
...
@@ -6414,6 +6414,13 @@ fi
...
@@ -6414,6 +6414,13 @@ fi
if
test
"
$use_lfs
"
=
"yes"
;
then
if
test
"
$use_lfs
"
=
"yes"
;
then
# Two defines needed to enable largefile support on various platforms
# Two defines needed to enable largefile support on various platforms
# These may affect some typedefs
# These may affect some typedefs
case
$ac_sys_system
/
$ac_sys_release
in
AIX
*
)
$as_echo
"#define _LARGE_FILES 1"
>>
confdefs.h
;;
esac
$as_echo
"#define _LARGEFILE_SOURCE 1"
>>
confdefs.h
$as_echo
"#define _LARGEFILE_SOURCE 1"
>>
confdefs.h
...
...
configure.in
View file @
216e404b
...
@@ -1376,6 +1376,12 @@ fi
...
@@ -1376,6 +1376,12 @@ fi
if test "$use_lfs" = "yes"; then
if test "$use_lfs" = "yes"; then
# Two defines needed to enable largefile support on various platforms
# Two defines needed to enable largefile support on various platforms
# These may affect some typedefs
# These may affect some typedefs
case $ac_sys_system/$ac_sys_release in
AIX*)
AC_DEFINE(_LARGE_FILES, 1,
[This must be defined on AIX systems to enable large file support.])
;;
esac
AC_DEFINE(_LARGEFILE_SOURCE, 1,
AC_DEFINE(_LARGEFILE_SOURCE, 1,
[This must be defined on some systems to enable large file support.])
[This must be defined on some systems to enable large file support.])
AC_DEFINE(_FILE_OFFSET_BITS, 64,
AC_DEFINE(_FILE_OFFSET_BITS, 64,
...
...
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