Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
216e404b
Kaydet (Commit)
216e404b
authored
Şub 19, 2011
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#11184: Fix large file support on AIX.
üst
6e8d17c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
NEWS
Misc/NEWS
+2
-0
configure
configure
+8
-1
configure.in
configure.in
+6
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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