Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c1ce2860
Commit
c1ce2860
authored
Dec 06, 2008
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue 4483 - _dbm build failures on systems with gdbm_compat lib.
parent
008d8ef1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
5 deletions
+20
-5
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_dbmmodule.c
Modules/_dbmmodule.c
+3
-0
setup.py
setup.py
+14
-5
No files found.
Misc/NEWS
View file @
c1ce2860
...
@@ -25,6 +25,9 @@ Core and Builtins
...
@@ -25,6 +25,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat
libs.
- Issue #4542: On Windows, binascii.crc32 still accepted str as binary input;
- Issue #4542: On Windows, binascii.crc32 still accepted str as binary input;
the corresponding tests now pass.
the corresponding tests now pass.
...
...
Modules/_dbmmodule.c
View file @
c1ce2860
...
@@ -21,6 +21,9 @@ static char *which_dbm = "GNU gdbm"; /* EMX port of GDBM */
...
@@ -21,6 +21,9 @@ static char *which_dbm = "GNU gdbm"; /* EMX port of GDBM */
#elif defined(HAVE_GDBM_NDBM_H)
#elif defined(HAVE_GDBM_NDBM_H)
#include <gdbm/ndbm.h>
#include <gdbm/ndbm.h>
static
char
*
which_dbm
=
"GNU gdbm"
;
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)
#elif defined(HAVE_BERKDB_H)
#include <db.h>
#include <db.h>
static
char
*
which_dbm
=
"Berkeley DB"
;
static
char
*
which_dbm
=
"Berkeley DB"
;
...
...
setup.py
View file @
c1ce2860
...
@@ -783,11 +783,20 @@ class PyBuildExt(build_ext):
...
@@ -783,11 +783,20 @@ class PyBuildExt(build_ext):
exts.append( Extension('_dbm', ['_dbmmodule.c'],
exts.append( Extension('_dbm', ['_dbmmodule.c'],
define_macros=[('HAVE_NDBM_H',None)],
define_macros=[('HAVE_NDBM_H',None)],
libraries = ndbm_libs ) )
libraries = ndbm_libs ) )
elif (self.compiler.find_library_file(lib_dirs, 'gdbm')
elif self.compiler.find_library_file(lib_dirs, 'gdbm'):
and find_file("
gdbm
/
ndbm
.
h
", inc_dirs, []) is not None):
gdbm_libs = ['gdbm']
exts.append( Extension('_dbm', ['_dbmmodule.c'],
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)],
define_macros=[('HAVE_GDBM_NDBM_H',None)],
libraries = ['gdbm'] ) )
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 ) )
elif db_incs is not None:
elif db_incs is not None:
exts.append( Extension('_dbm', ['_dbmmodule.c'],
exts.append( Extension('_dbm', ['_dbmmodule.c'],
library_dirs=dblib_dir,
library_dirs=dblib_dir,
...
...
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