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
d784e53d
Kaydet (Commit)
d784e53d
authored
Şub 23, 2013
tarafından
Petri Lehtinen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #5033: Fix building of the sqlite3 extension module
üst
4eb9f500
d2132144
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+1
-1
No files found.
Misc/ACKS
Dosyayı görüntüle @
d784e53d
...
...
@@ -917,6 +917,7 @@ Samuele Pedroni
Justin Peel
Marcel van der Peijl
Berker Peksag
Andreas Pelme
Steven Pemberton
Bo Peng
Santiago Peresón
...
...
Misc/NEWS
Dosyayı görüntüle @
d784e53d
...
...
@@ -945,6 +945,9 @@ Tests
Build
-----
- Issue #5033: Fix building of the sqlite3 extension module when the
SQLite library version has "beta" in it. Patch by Andreas Pelme.
- Issue #17228: Fix building without pymalloc.
- Issue #3718: Use AC_ARG_VAR to set MACHDEP in configure.ac.
...
...
setup.py
Dosyayı görüntüle @
d784e53d
...
...
@@ -1073,7 +1073,7 @@ class PyBuildExt(build_ext):
with
open
(
f
)
as
file
:
incf
=
file
.
read
()
m
=
re
.
search
(
r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(
.
*)"'
,
incf
)
r'\s*.*#\s*.*define\s.*SQLITE_VERSION\W*"(
[\d\.]
*)"'
,
incf
)
if
m
:
sqlite_version
=
m
.
group
(
1
)
sqlite_version_tuple
=
tuple
([
int
(
x
)
...
...
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