HDB_NDBM_H -> HAVE_NDBM_H

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8411 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2000-06-20 13:20:06 +00:00
parent b6f1c34fe1
commit 6947e2ba7b

View File

@@ -41,20 +41,20 @@ struct hdb_method {
};
static struct hdb_method methods[] = {
#if HAVE_DB_H
#ifdef HAVE_DB_H
{"db:", hdb_db_create},
#endif
#if HDB_NDBM_H
#ifdef HAVE_NDBM_H
{"ndbm:", hdb_ndbm_create},
#endif
#if OPENLDAP
#ifdef OPENLDAP
{"ldap:", hdb_ldap_create},
#endif
#if HAVE_DB_H
#ifdef HAVE_DB_H
{"", hdb_db_create},
#elif HAVE_NDBM_H
#elif defined(HAVE_NDBM_H)
{"", hdb_ndbm_create},
#elif OPENLDAP
#elif defined(OPENLDAP)
{"", hdb_ldap_create},
#endif
{NULL, NULL}