issue 4483 - _dbm build failures on systems with gdbm_compat lib.

This commit is contained in:
Skip Montanaro 2008-12-06 17:25:02 +00:00
parent 008d8ef1a8
commit c1ce286061
3 changed files with 20 additions and 5 deletions

View file

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