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
738446f4
Kaydet (Commit)
738446f4
authored
Eki 27, 2006
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Check db_setup_debug for a few print statements; change sqlite_setup_debug to False
üst
872dba42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
setup.py
setup.py
+8
-5
No files found.
setup.py
Dosyayı görüntüle @
738446f4
...
...
@@ -679,7 +679,8 @@ class PyBuildExt(build_ext):
# save the include directory with the db.h version
# (first occurrance only)
db_ver_inc_map
[
db_ver
]
=
d
print
"db.h: found"
,
db_ver
,
"in"
,
d
if
db_setup_debug
:
print
"db.h: found"
,
db_ver
,
"in"
,
d
else
:
# we already found a header for this library version
if
db_setup_debug
:
print
"db.h: ignoring"
,
d
...
...
@@ -719,8 +720,9 @@ class PyBuildExt(build_ext):
if
db_setup_debug
:
print
"db lib: "
,
dblib
,
"not found"
except
db_found
:
print
"db lib: using"
,
db_ver
,
dblib
if
db_setup_debug
:
print
"db: lib dir"
,
dblib_dir
,
"inc dir"
,
db_incdir
if
db_setup_debug
:
print
"db lib: using"
,
db_ver
,
dblib
print
"db: lib dir"
,
dblib_dir
,
"inc dir"
,
db_incdir
db_incs
=
[
db_incdir
]
dblibs
=
[
dblib
]
# We add the runtime_library_dirs argument because the
...
...
@@ -741,7 +743,7 @@ class PyBuildExt(build_ext):
dblib_dir
=
None
# The sqlite interface
sqlite_setup_debug
=
Tru
e
# verbose debug prints from this script?
sqlite_setup_debug
=
Fals
e
# verbose debug prints from this script?
# We hunt for #define SQLITE_VERSION "n.n.n"
# We need to find >= sqlite version 3.0.8
...
...
@@ -773,7 +775,8 @@ class PyBuildExt(build_ext):
for
x
in
sqlite_version
.
split
(
"."
)])
if
sqlite_version_tuple
>=
MIN_SQLITE_VERSION_NUMBER
:
# we win!
print
"
%
s/sqlite3.h: version
%
s"
%
(
d
,
sqlite_version
)
if
sqlite_setup_debug
:
print
"
%
s/sqlite3.h: version
%
s"
%
(
d
,
sqlite_version
)
sqlite_incdir
=
d
break
else
:
...
...
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