a new try add hadnling the db-compat-ndbm and dbm jungle

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8203 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-04-29 09:54:31 +00:00
parent 57d0ff89b2
commit 181fbb2504

View File

@@ -41,13 +41,17 @@
#if defined(HAVE_DB_H)
#define DB_DBM_HSEARCH 1
#include <db.h>
#elif defined(HAVE_NDBM_H)
#endif
#ifndef DBM_INSERT
#if defined(HAVE_NDBM_H)
#include <ndbm.h>
#elif defined(HAVE_DBM_H)
#include <dbm.h>
#elif defined(HAVE_RPCSVC_DBM_H)
#include <rpcsvc/dbm.h>
#endif
#endif
/* Macros to convert ndbm names to dbm names.
* Note that dbm_nextkey() cannot be simply converted using a macro, since