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
45313fe6
Kaydet (Commit)
45313fe6
authored
Ara 06, 2008
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
issue 4483 - dbm build failures on systems with gdbm_compat lib.
üst
f5d5a663
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
NEWS
Misc/NEWS
+3
-0
dbmmodule.c
Modules/dbmmodule.c
+3
-0
setup.py
setup.py
+14
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
45313fe6
...
...
@@ -65,6 +65,9 @@ Core and Builtins
Library
-------
- Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat
libs.
- Issue #4529: fix the parser module's validation of try-except-finally
statements.
...
...
Modules/dbmmodule.c
Dosyayı görüntüle @
45313fe6
...
...
@@ -21,6 +21,9 @@ static char *which_dbm = "GNU gdbm"; /* EMX port of GDBM */
#elif defined(HAVE_GDBM_NDBM_H)
#include <gdbm/ndbm.h>
static
char
*
which_dbm
=
"GNU gdbm"
;
#elif defined(HAVE_GDBM_DASH_NDBM_H)
#include <gdbm-ndbm.h>
static
char
*
which_dbm
=
"GNU gdbm"
;
#elif defined(HAVE_BERKDB_H)
#include <db.h>
static
char
*
which_dbm
=
"Berkeley DB"
;
...
...
setup.py
Dosyayı görüntüle @
45313fe6
...
...
@@ -1019,8 +1019,20 @@ class PyBuildExt(build_ext):
exts
.
append
(
Extension
(
'dbm'
,
[
'dbmmodule.c'
],
define_macros
=
[(
'HAVE_NDBM_H'
,
None
)],
libraries
=
ndbm_libs
)
)
elif
(
self
.
compiler
.
find_library_file
(
lib_dirs
,
'gdbm'
)
and
find_file
(
"gdbm/ndbm.h"
,
inc_dirs
,
[])
is
not
None
):
elif
self
.
compiler
.
find_library_file
(
lib_dirs
,
'gdbm'
):
gdbm_libs
=
[
'gdbm'
]
if
self
.
compiler
.
find_library_file
(
lib_dirs
,
'gdbm_compat'
):
gdbm_libs
.
append
(
'gdbm_compat'
)
if
find_file
(
"gdbm/ndbm.h"
,
inc_dirs
,
[])
is
not
None
:
exts
.
append
(
Extension
(
'dbm'
,
[
'dbmmodule.c'
],
define_macros
=
[(
'HAVE_GDBM_NDBM_H'
,
None
)],
libraries
=
gdbm_libs
)
)
elif
find_file
(
"gdbm-ndbm.h"
,
inc_dirs
,
[])
is
not
None
:
exts
.
append
(
Extension
(
'dbm'
,
[
'dbmmodule.c'
],
define_macros
=
[(
'HAVE_GDBM_DASH_NDBM_H'
,
None
)],
libraries
=
gdbm_libs
)
)
exts
.
append
(
Extension
(
'dbm'
,
[
'dbmmodule.c'
],
define_macros
=
[(
'HAVE_GDBM_NDBM_H'
,
None
)],
libraries
=
[
'gdbm'
]
)
)
...
...
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