mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Trent Mick points out that the BSD DB also provides an ndbm compatibility
layer. If that is available, consider that as an option as well.
This commit is contained in:
parent
bbba66eb7d
commit
ae90f8da24
4 changed files with 298 additions and 291 deletions
|
@ -13,6 +13,8 @@
|
|||
*/
|
||||
#if defined(HAVE_NDBM_H)
|
||||
#include <ndbm.h>
|
||||
#elif defined(HAVE_DB1_NDBM_H)
|
||||
#include <db1/ndbm.h>
|
||||
#elif defined(HAVE_GDBM_NDBM_H)
|
||||
#include <gdbm/ndbm.h>
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue