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:
Fred Drake 2000-09-15 03:38:12 +00:00
parent bbba66eb7d
commit ae90f8da24
4 changed files with 298 additions and 291 deletions

View file

@ -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