mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
issue 4483 - _dbm build failures on systems with gdbm_compat lib.
This commit is contained in:
parent
008d8ef1a8
commit
c1ce286061
3 changed files with 20 additions and 5 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue