remove bdb2 cruft

This commit is contained in:
Kurt Zeilenga 2000-08-18 04:24:08 +00:00
parent 7800d2d41e
commit 5425a5e4c8
2 changed files with 0 additions and 18 deletions

View file

@ -27,9 +27,6 @@
#ifdef SLAPD_LDBM #ifdef SLAPD_LDBM
#include "back-ldbm/external.h" #include "back-ldbm/external.h"
#endif #endif
#ifdef SLAPD_BDB2
#include "back-bdb2/external.h"
#endif
#ifdef SLAPD_PASSWD #ifdef SLAPD_PASSWD
#include "back-passwd/external.h" #include "back-passwd/external.h"
#endif #endif
@ -59,9 +56,6 @@ static BackendInfo binfo[] = {
#if defined(SLAPD_LDBM) && !defined(SLAPD_LDBM_DYNAMIC) #if defined(SLAPD_LDBM) && !defined(SLAPD_LDBM_DYNAMIC)
{"ldbm", ldbm_back_initialize}, {"ldbm", ldbm_back_initialize},
#endif #endif
#if defined(SLAPD_BDB2) && !defined(SLAPD_BDB2_DYNAMIC)
{"bdb2", bdb2_back_initialize},
#endif
#if defined(SLAPD_PASSWD) && !defined(SLAPD_PASSWD_DYNAMIC) #if defined(SLAPD_PASSWD) && !defined(SLAPD_PASSWD_DYNAMIC)
{"passwd", passwd_back_initialize}, {"passwd", passwd_back_initialize},
#endif #endif

View file

@ -113,9 +113,6 @@ usage( char *name )
"\t-r directory\n" "\t-r directory\n"
#endif #endif
"\t-s level\tSyslog Level\n" "\t-s level\tSyslog Level\n"
#ifdef SLAPD_BDB2
"\t-t\t\tEnable BDB2 timing\n"
#endif
#if defined(HAVE_SETUID) && defined(HAVE_SETGID) #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
"\t-u user\tUser (id or name) to ran as\n" "\t-u user\tUser (id or name) to ran as\n"
#endif #endif
@ -209,9 +206,6 @@ int main( int argc, char **argv )
#ifdef LOG_LOCAL4 #ifdef LOG_LOCAL4
"l:" "l:"
#endif #endif
#ifdef SLAPD_BDB2
"t"
#endif
#if defined(HAVE_SETUID) && defined(HAVE_SETGID) #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
"u:g:" "u:g:"
#endif #endif
@ -248,12 +242,6 @@ int main( int argc, char **argv )
break; break;
#endif #endif
#ifdef SLAPD_BDB2
case 't': /* timed server */
serverMode |= SLAP_TIMED_MODE;
break;
#endif
#ifdef HAVE_CHROOT #ifdef HAVE_CHROOT
case 'r': case 'r':
if( sandbox ) free(sandbox); if( sandbox ) free(sandbox);