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
21645fc0
Kaydet (Commit)
21645fc0
authored
Kas 19, 2002
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't try to use unsupported DB versions.
üst
ef546b34
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
Setup.dist
Modules/Setup.dist
+6
-1
setup.py
setup.py
+3
-9
No files found.
Modules/Setup.dist
Dosyayı görüntüle @
21645fc0
...
...
@@ -396,7 +396,12 @@ GLHACK=-Dclear=__GLclear
# Sleepycat Berkeley DB interface.
#
# This requires the Sleepycat DB code, see http://www.sleepycat.com/
# The minimum supported version of that library is 3.0.
# The earliest supported version of that library is 3.0, the latest
# supported version is 4.0 (4.1 is specifically not supported, as that
# changes the semantics of transactional databases). A list of available
# releases can be found at
#
# http://www.sleepycat.com/update/index.html
#
# Edit the variables DB and DBLIBVERto point to the db top directory
# and the subdirectory of PORT where you built it.
...
...
setup.py
Dosyayı görüntüle @
21645fc0
...
...
@@ -439,21 +439,15 @@ class PyBuildExt(build_ext):
# when sorted in reverse order, keys for this dict must appear in the
# order you wish to search - e.g., search for db4 before db3
db_try_this
=
{
'db4'
:
{
'libs'
:
(
'db-4.3'
,
'db-4.2'
,
'db-4.1'
,
'db-4.0'
),
'libdirs'
:
(
'/usr/local/BerkeleyDB.4.3/lib'
,
'/usr/local/BerkeleyDB.4.2/lib'
,
'/usr/local/BerkeleyDB.4.1/lib'
,
'/usr/local/BerkeleyDB.4.0/lib'
,
'db4'
:
{
'libs'
:
(
'db-4.0'
,),
'libdirs'
:
(
'/usr/local/BerkeleyDB.4.0/lib'
,
'/usr/local/lib'
,
'/usr/lib'
,
'/opt/sfw'
,
'/sw/lib'
,
'/lib'
,
),
'incdirs'
:
(
'/usr/local/BerkeleyDB.4.3/include'
,
'/usr/local/BerkeleyDB.4.2/include'
,
'/usr/local/BerkeleyDB.4.1/include'
,
'/usr/local/BerkeleyDB.4.0/include'
,
'incdirs'
:
(
'/usr/local/BerkeleyDB.4.0/include'
,
'/usr/local/include/db4'
,
'/opt/sfw/include/db4'
,
'/sw/include/db4'
,
...
...
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