when building ldap as a shared module, don't include it in the list

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13430 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2004-03-06 22:26:46 +00:00
parent b54087bb83
commit e4b3116bfe

View File

@@ -51,14 +51,14 @@ static struct hdb_method methods[] = {
#if HAVE_NDBM
{"ndbm:", hdb_ndbm_create},
#endif
#ifdef OPENLDAP
#if defined(OPENLDAP) && !defined(OPENLDAP_MODULE)
{"ldap:", hdb_ldap_create},
#endif
#if HAVE_DB1 || HAVE_DB3
{"", hdb_db_create},
#elif defined(HAVE_NDBM)
{"", hdb_ndbm_create},
#elif defined(OPENLDAP)
#elif defined(OPENLDAP) && !defined(OPENLDAP_MODULE)
{"", hdb_ldap_create},
#endif
{NULL, NULL}