Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
orbea -
OpenLDAP
Commits
4fdddbc1
Commit
4fdddbc1
authored
Feb 26, 2021
by
Quanah Gibson-Mount
Browse files
Regenerate for ITS#9438
parent
2ec44a11
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure
View file @
4fdddbc1
...
...
@@ -682,6 +682,7 @@ BUILD_SSSVLV
BUILD_SEQMOD
BUILD_RWM
BUILD_RETCODE
BUILD_REMOTEAUTH
BUILD_REFINT
BUILD_PROXYCACHE
BUILD_PPOLICY
...
...
@@ -881,6 +882,7 @@ enable_memberof
enable_ppolicy
enable_proxycache
enable_refint
enable_remoteauth
enable_retcode
enable_rwm
enable_seqmod
...
...
@@ -1586,6 +1588,7 @@ SLAPD Overlay Options:
--enable-ppolicy Password Policy overlay no|yes|mod [no]
--enable-proxycache Proxy Cache overlay no|yes|mod [no]
--enable-refint Referential Integrity overlay no|yes|mod [no]
--enable-remoteauth Deferred Authentication overlay no|yes|mod [no]
--enable-retcode Return Code testing overlay no|yes|mod [no]
--enable-rwm Rewrite/Remap overlay no|yes|mod [no]
--enable-seqmod Sequential Modify overlay no|yes|mod [no]
...
...
@@ -3818,6 +3821,7 @@ Overlays="accesslog \
ppolicy \
proxycache \
refint \
remoteauth \
retcode \
rwm \
seqmod \
...
...
@@ -4138,6 +4142,28 @@ fi
# end --enable-refint
# OpenLDAP --enable-remoteauth
# Check whether --enable-remoteauth was given.
if test "${enable_remoteauth+set}" = set; then :
enableval=$enable_remoteauth;
ol_arg=invalid
for ol_val in no yes mod ; do
if test "$enableval" = "$ol_val" ; then
ol_arg="$ol_val"
fi
done
if test "$ol_arg" = "invalid" ; then
as_fn_error $? "bad value $enableval for --enable-remoteauth" "$LINENO" 5
fi
ol_enable_remoteauth="$ol_arg"
else
ol_enable_remoteauth=${ol_enable_overlays:-no}
fi
# end --enable-remoteauth
# OpenLDAP --enable-retcode
# Check whether --enable-retcode was given.
...
...
@@ -4551,6 +4577,7 @@ BUILD_MEMBEROF=no
BUILD_PPOLICY=no
BUILD_PROXYCACHE=no
BUILD_REFINT=no
BUILD_REMOTEAUTH=no
BUILD_RETCODE=no
BUILD_RWM=no
BUILD_SEQMOD=no
...
...
@@ -25060,6 +25087,22 @@ _ACEOF
fi
if test "$ol_enable_remoteauth" != no ; then
BUILD_REMOTEAUTH=$ol_enable_remoteauth
if test "$ol_enable_remoteauth" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS remoteauth.la"
else
MFLAG=SLAPD_MOD_STATIC
SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS remoteauth.o"
fi
cat >>confdefs.h <<_ACEOF
#define SLAPD_OVER_REMOTEAUTH $MFLAG
_ACEOF
fi
if test "$ol_enable_retcode" != no ; then
BUILD_RETCODE=$ol_enable_retcode
if test "$ol_enable_retcode" = mod ; then
...
...
@@ -25313,6 +25356,7 @@ fi
# Check whether --with-xxinstall was given.
...
...
include/portable.hin
View file @
4fdddbc1
...
...
@@ -981,6 +981,9 @@
/* define for Referential Integrity overlay */
#undef SLAPD_OVER_REFINT
/* define for Deferred Authentication overlay */
#undef SLAPD_OVER_REMOTEAUTH
/* define for Return Code overlay */
#undef SLAPD_OVER_RETCODE
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment