Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
0716eb8a
Commit
0716eb8a
authored
21 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup prev commit
parent
67391ff6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+12
-12
12 additions, 12 deletions
configure
configure.in
+11
-11
11 additions, 11 deletions
configure.in
with
23 additions
and
23 deletions
configure
+
12
−
12
View file @
0716eb8a
#! /bin/sh
# $OpenLDAP$
# from OpenLDAP: pkg/ldap/configure.in,v 1.52
5
2004/04/08 0
0:48:39 kurt
Exp
# from OpenLDAP: pkg/ldap/configure.in,v 1.52
6
2004/04/08 0
3:56:25 hyc
Exp
# This work is part of OpenLDAP Software <http://www.openldap.org/>.
#
...
...
@@ -86,31 +86,31 @@ ac_help="$ac_help
ac_help="$ac_help
--enable-dnssrv enable dnssrv backend no|yes|mod [no]"
ac_help="$ac_help
--enable-hdb enable Hierarchical DB backend [no]"
--enable-hdb enable Hierarchical DB backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-ldap enable ldap backend [no]"
--enable-ldap enable ldap backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-ldbm enable ldbm backend [no]"
--enable-ldbm enable ldbm backend
no|yes|mod
[no]"
ac_help="$ac_help
--with-ldbm-api with LDBM API auto|berkeley|bcompat|mdbm|gdbm [auto]"
ac_help="$ac_help
--with-ldbm-type use LDBM type auto|btree|hash [auto]"
ac_help="$ac_help
--enable-meta enable metadirectory backend [no]"
--enable-meta enable metadirectory backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-monitor enable monitor backend [yes]"
--enable-monitor enable monitor backend
no|yes|mod
[yes]"
ac_help="$ac_help
--enable-null enable null backend [no]"
--enable-null enable null backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-passwd enable passwd backend [no]"
--enable-passwd enable passwd backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-perl enable perl backend [no]"
--enable-perl enable perl backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-relay enable relay backend [yes]"
--enable-relay enable relay backend
no|yes|mod
[yes]"
ac_help="$ac_help
--enable-shell enable shell backend [no]"
--enable-shell enable shell backend
no|yes|mod
[no]"
ac_help="$ac_help
--enable-sql enable sql backend [no]"
--enable-sql enable sql backend
no|yes|mod
[no]"
ac_help="$ac_help
SLAPD Overlay Options:"
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
11
−
11
View file @
0716eb8a
...
...
@@ -202,21 +202,21 @@ Backends="bdb dnssrv hdb ldap ldbm meta monitor null \
dnl SLAPD Backend options
OL_ARG_ENABLE(bdb,[ --enable-bdb enable Berkeley DB backend no|yes|mod], yes, [no yes mod])dnl
OL_ARG_ENABLE(dnssrv,[ --enable-dnssrv enable dnssrv backend no|yes|mod], no, [no yes mod])dnl
OL_ARG_ENABLE(hdb,[ --enable-hdb enable Hierarchical DB backend], no, [no yes mod])dnl
OL_ARG_ENABLE(ldap,[ --enable-ldap enable ldap backend], no, [no yes mod])dnl
OL_ARG_ENABLE(ldbm,[ --enable-ldbm enable ldbm backend], no, [no yes mod])dnl
OL_ARG_ENABLE(hdb,[ --enable-hdb enable Hierarchical DB backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(ldap,[ --enable-ldap enable ldap backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(ldbm,[ --enable-ldbm enable ldbm backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_WITH(ldbm_api,[ --with-ldbm-api with LDBM API auto|berkeley|bcompat|mdbm|gdbm], auto,
[auto berkeley bcompat mdbm gdbm])
OL_ARG_WITH(ldbm_type,[ --with-ldbm-type use LDBM type auto|btree|hash], auto,
[auto btree hash])
OL_ARG_ENABLE(meta,[ --enable-meta enable metadirectory backend], no, [no yes mod])dnl
OL_ARG_ENABLE(monitor,[ --enable-monitor enable monitor backend], yes, [no yes mod])dnl
OL_ARG_ENABLE(null,[ --enable-null enable null backend], no, [no yes mod])dnl
OL_ARG_ENABLE(passwd,[ --enable-passwd enable passwd backend], no, [no yes mod])dnl
OL_ARG_ENABLE(perl,[ --enable-perl enable perl backend], no, [no yes mod])dnl
OL_ARG_ENABLE(relay,[ --enable-relay enable relay backend], yes, [no yes mod])dnl
OL_ARG_ENABLE(shell,[ --enable-shell enable shell backend], no, [no yes mod])dnl
OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend], no, [no yes mod])dnl
OL_ARG_ENABLE(meta,[ --enable-meta enable metadirectory backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(monitor,[ --enable-monitor enable monitor backend
no|yes|mod
], yes, [no yes mod])dnl
OL_ARG_ENABLE(null,[ --enable-null enable null backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(passwd,[ --enable-passwd enable passwd backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(perl,[ --enable-perl enable perl backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(relay,[ --enable-relay enable relay backend
no|yes|mod
], yes, [no yes mod])dnl
OL_ARG_ENABLE(shell,[ --enable-shell enable shell backend
no|yes|mod
], no, [no yes mod])dnl
OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend
no|yes|mod
], no, [no yes mod])dnl
dnl ----------------------------------------------------------------
dnl SLAPD Overlay Options
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment