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
cf754ba3
Kaydet (Commit)
cf754ba3
authored
Eyl 03, 2007
tarafından
Matthias Klose
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Added support for linking the bsddb module against BerkeleyDB 4.6.x.
üst
df65f9bf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
NEWS
Misc/NEWS
+2
-0
setup.py
setup.py
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
cf754ba3
...
...
@@ -103,6 +103,8 @@ Extension Modules
-
Bug
#
1726026
:
Correct
the
field
names
of
WIN32_FIND_DATAA
and
WIN32_FIND_DATAW
structures
in
the
ctypes
.
wintypes
module
.
-
Added
support
for
linking
the
bsddb
module
against
BerkeleyDB
4.6
.
x
.
Documentation
-------------
...
...
setup.py
Dosyayı görüntüle @
cf754ba3
...
...
@@ -607,7 +607,7 @@ class PyBuildExt(build_ext):
# a release. Most open source OSes come with one or more
# versions of BerkeleyDB already installed.
max_db_ver
=
(
4
,
5
)
max_db_ver
=
(
4
,
6
)
min_db_ver
=
(
3
,
3
)
db_setup_debug
=
False
# verbose debug prints from this script?
...
...
@@ -624,7 +624,7 @@ class PyBuildExt(build_ext):
'/sw/include/db3'
,
]
# 4.x minor number specific paths
for
x
in
(
0
,
1
,
2
,
3
,
4
,
5
):
for
x
in
(
0
,
1
,
2
,
3
,
4
,
5
,
6
):
db_inc_paths
.
append
(
'/usr/include/db4
%
d'
%
x
)
db_inc_paths
.
append
(
'/usr/include/db4.
%
d'
%
x
)
db_inc_paths
.
append
(
'/usr/local/BerkeleyDB.4.
%
d/include'
%
x
)
...
...
@@ -647,7 +647,7 @@ class PyBuildExt(build_ext):
for
dn
in
inc_dirs
:
std_variants
.
append
(
os
.
path
.
join
(
dn
,
'db3'
))
std_variants
.
append
(
os
.
path
.
join
(
dn
,
'db4'
))
for
x
in
(
0
,
1
,
2
,
3
,
4
):
for
x
in
(
0
,
1
,
2
,
3
,
4
,
5
,
6
):
std_variants
.
append
(
os
.
path
.
join
(
dn
,
"db4
%
d"
%
x
))
std_variants
.
append
(
os
.
path
.
join
(
dn
,
"db4.
%
d"
%
x
))
for
x
in
(
2
,
3
):
...
...
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