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
691632f1
Kaydet (Commit)
691632f1
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
4cdceac7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
NEWS
Misc/NEWS
+2
-1
setup.py
setup.py
+3
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
691632f1
...
...
@@ -838,7 +838,8 @@ Extension Modules
- fixed a bug with bsddb.DB.stat: the flags and txn keyword arguments
were transposed.
- Added support for linking the bsddb module against BerkeleyDB 4.5.x.
- Added support for linking the bsddb module against BerkeleyDB 4.5.x
and 4.6.x.
- Bug #1633621: if curses.resizeterm() or curses.resize_term() is called,
update _curses.LINES, _curses.COLS, curses.LINES and curses.COLS.
...
...
setup.py
Dosyayı görüntüle @
691632f1
...
...
@@ -666,7 +666,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?
...
...
@@ -684,7 +684,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
)
...
...
@@ -709,7 +709,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