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
François Kooman
OpenLDAP
Commits
d177e477
Commit
d177e477
authored
20 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
s/--with/--enable/ for all overlay options
parent
44725e73
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+968
-963
968 additions, 963 deletions
configure
configure.in
+47
-42
47 additions, 42 deletions
configure.in
with
1015 additions
and
1005 deletions
configure
+
968
−
963
View file @
d177e477
This diff is collapsed.
Click to expand it.
configure.in
+
47
−
42
View file @
d177e477
...
...
@@ -245,17 +245,17 @@ dnl ----------------------------------------------------------------
dnl SLAPD Overlay Options
AC_ARG_WITH(xxslapoverlays,[
SLAPD Overlay Options:])
OL_ARG_
WITH
(chain,[ --
with
-chain LDAP Chain Response no|yes|mod], no,
OL_ARG_
ENABLE
(chain,[ --
enable
-chain LDAP Chain Response no|yes|mod], no,
[no yes mod])
OL_ARG_
WITH
(denyop,[ --
with
-denyop Deny Operation overlay no|yes|mod], no,
OL_ARG_
ENABLE
(denyop,[ --
enable
-denyop Deny Operation overlay no|yes|mod], no,
[no yes mod])
OL_ARG_
WITH
(dyngroup,[ --
with
-dyngroup Dynamic Group overlay no|yes|mod], no,
OL_ARG_
ENABLE
(dyngroup,[ --
enable
-dyngroup Dynamic Group overlay no|yes|mod], no,
[no yes mod])
OL_ARG_
WITH
(ppolicy,[ --
with
-ppolicy Password Policy overlay no|yes|mod], no,
OL_ARG_
ENABLE
(ppolicy,[ --
enable
-ppolicy Password Policy overlay no|yes|mod], no,
[no yes mod])
OL_ARG_
WITH
(proxycache,[ --
with
-proxycache Proxy Cache overlay no|yes|mod], no,
OL_ARG_
ENABLE
(proxycache,[ --
enable
-proxycache Proxy Cache overlay no|yes|mod], no,
[no yes mod])
OL_ARG_
WITH
(rwm,[ --
with
-rwm Rewrite/Remap overlay no|yes|mod], no,
OL_ARG_
ENABLE
(rwm,[ --
enable
-rwm Rewrite/Remap overlay no|yes|mod], no,
[no yes mod])
dnl ----------------------------------------------------------------
...
...
@@ -447,12 +447,12 @@ if test $ol_enable_slapd = no ; then
ol_enable_rewrite=no
ol_
with
_chain=no
ol_
with
_denyop=no
ol_
with
_dyngroup=no
ol_
with
_ppolicy=no
ol_
with
_proxycache=no
ol_
with
_rwm=no
ol_
enable
_chain=no
ol_
enable
_denyop=no
ol_
enable
_dyngroup=no
ol_
enable
_ppolicy=no
ol_
enable
_proxycache=no
ol_
enable
_rwm=no
elif test $ol_enable_ldbm = no ; then
dnl SLAPD without LDBM
...
...
@@ -530,6 +530,10 @@ else
fi
fi
if test $ol_enable_chain != no -a $ol_enable_ldap = no ; then
AC_MSG_ERROR([--enable-chain requires --enable-ldap])
fi
if test $ol_enable_slurpd = yes ; then
dnl SLURPD was specifically enabled
if test $ol_with_threads = no ; then
...
...
@@ -821,6 +825,7 @@ if test $ol_enable_modules != no ; then
AC_MSG_ERROR([could not locate libtool -lltdl])
fi
ol_link_modules=yes
else
ol_with_bdb_module=static
ol_with_dnssrv_module=static
...
...
@@ -835,29 +840,29 @@ else
ol_with_relay_module=static
ol_with_shell_module=static
ol_with_sql_module=static
if test $ol_
with
_chain = mod ; then
if test $ol_
enable
_chain = mod ; then
AC_MSG_WARN([building static chain overlay])
ol_
with
_chain=yes
ol_
enable
_chain=yes
fi
if test $ol_
with
_denyop = mod ; then
if test $ol_
enable
_denyop = mod ; then
AC_MSG_WARN([building static denyop overlay])
ol_
with
_denyop=yes
ol_
enable
_denyop=yes
fi
if test $ol_
with
_dyngroup = mod ; then
if test $ol_
enable
_dyngroup = mod ; then
AC_MSG_WARN([building static dyngroup overlay])
ol_
with
_dyngroup=yes
ol_
enable
_dyngroup=yes
fi
if test $ol_
with
_ppolicy = mod ; then
if test $ol_
enable
_ppolicy = mod ; then
AC_MSG_WARN([building static ppolicy overlay])
ol_
with
_ppolicy=yes
ol_
enable
_ppolicy=yes
fi
if test $ol_
with
_proxycache = mod ; then
if test $ol_
enable
_proxycache = mod ; then
AC_MSG_WARN([building static proxycache overlay])
ol_
with
_proxycache=yes
ol_
enable
_proxycache=yes
fi
if test $ol_
with
_rwm = mod ; then
if test $ol_
enable
_rwm = mod ; then
AC_MSG_WARN([building static rwm overlay])
ol_
with
_rwm=yes
ol_
enable
_rwm=yes
fi
fi
...
...
@@ -2789,9 +2794,9 @@ if test "$ol_link_sql" != no ; then
fi
fi
if test "$ol_
with
_chain" != no ; then
BUILD_CHAIN=$ol_
with
_chain
if test "$ol_
with
_chain" = mod ; then
if test "$ol_
enable
_chain" != no ; then
BUILD_CHAIN=$ol_
enable
_chain
if test "$ol_
enable
_chain" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS chain.la"
else
...
...
@@ -2800,9 +2805,9 @@ if test "$ol_with_chain" != no ; then
AC_DEFINE_UNQUOTED(SLAPD_OVER_CHAIN,$MFLAG,[define for Dynamic Group overlay])
fi
if test "$ol_
with
_denyop" != no ; then
BUILD_DENYOP=$ol_
with
_denyop
if test "$ol_
with
_denyop" = mod ; then
if test "$ol_
enable
_denyop" != no ; then
BUILD_DENYOP=$ol_
enable
_denyop
if test "$ol_
enable
_denyop" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS denyop.la"
else
...
...
@@ -2811,9 +2816,9 @@ if test "$ol_with_denyop" != no ; then
AC_DEFINE_UNQUOTED(SLAPD_OVER_DENYOP,$MFLAG,[define for Dynamic Group overlay])
fi
if test "$ol_
with
_dyngroup" != no ; then
BUILD_DYNGROUP=$ol_
with
_dyngroup
if test "$ol_
with
_dyngroup" = mod ; then
if test "$ol_
enable
_dyngroup" != no ; then
BUILD_DYNGROUP=$ol_
enable
_dyngroup
if test "$ol_
enable
_dyngroup" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS dyngroup.la"
else
...
...
@@ -2822,9 +2827,9 @@ if test "$ol_with_dyngroup" != no ; then
AC_DEFINE_UNQUOTED(SLAPD_OVER_DYNGROUP,$MFLAG,[define for Dynamic Group overlay])
fi
if test "$ol_
with
_ppolicy" != no ; then
BUILD_PPOLICY=$ol_
with
_ppolicy
if test "$ol_
with
_ppolicy" = mod ; then
if test "$ol_
enable
_ppolicy" != no ; then
BUILD_PPOLICY=$ol_
enable
_ppolicy
if test "$ol_
enable
_ppolicy" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS ppolicy.la"
else
...
...
@@ -2833,9 +2838,9 @@ if test "$ol_with_ppolicy" != no ; then
AC_DEFINE_UNQUOTED(SLAPD_OVER_PPOLICY,$MFLAG,[define for Password Policy overlay])
fi
if test "$ol_
with
_proxycache" != no ; then
BUILD_PROXYCACHE=$ol_
with
_proxycache
if test "$ol_
with
_proxycache" = mod ; then
if test "$ol_
enable
_proxycache" != no ; then
BUILD_PROXYCACHE=$ol_
enable
_proxycache
if test "$ol_
enable
_proxycache" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS pcache.la"
else
...
...
@@ -2844,10 +2849,10 @@ if test "$ol_with_proxycache" != no ; then
AC_DEFINE_UNQUOTED(SLAPD_OVER_PROXYCACHE,$MFLAG,[define for Proxy Cache overlay])
fi
if test "$ol_
with
_rwm " != no ; then
if test "$ol_
enable
_rwm " != no ; then
BUILD_REWRITE=yes
BUILD_RWM=$ol_
with
_rwm
if test "$ol_
with
_rwm" = mod ; then
BUILD_RWM=$ol_
enable
_rwm
if test "$ol_
enable
_rwm" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS rwm.la"
else
...
...
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