Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
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
openldap
OpenLDAP
Commits
2ddcb121
Commit
2ddcb121
authored
3 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#9437 - Regenerate configure
parent
fe7e4697
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#2324
canceled
3 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+48
-0
48 additions, 0 deletions
configure
include/portable.hin
+3
-0
3 additions, 0 deletions
include/portable.hin
with
51 additions
and
0 deletions
configure
+
48
−
0
View file @
2ddcb121
...
...
@@ -687,6 +687,7 @@ BUILD_REMOTEAUTH
BUILD_REFINT
BUILD_PROXYCACHE
BUILD_PPOLICY
BUILD_OTP
BUILD_MEMBEROF
BUILD_HOMEDIR
BUILD_LASTMOD
...
...
@@ -883,6 +884,7 @@ enable_dyngroup
enable_dynlist
enable_homedir
enable_memberof
enable_otp
enable_ppolicy
enable_proxycache
enable_refint
...
...
@@ -1594,6 +1596,7 @@ SLAPD Overlay Options:
--enable-dynlist Dynamic List overlay no|yes|mod [no]
--enable-homedir Home Directory Management overlay no|yes|mod [no]
--enable-memberof Reverse Group Membership overlay no|yes|mod [no]
--enable-otp OTP 2-factor authentication overlay no|yes|mod [no]
--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]
...
...
@@ -3833,6 +3836,7 @@ Overlays="accesslog \
dynlist \
homedir \
memberof \
otp \
ppolicy \
proxycache \
refint \
...
...
@@ -4115,6 +4119,28 @@ fi
# end --enable-memberof
# OpenLDAP --enable-otp
# Check whether --enable-otp was given.
if test "${enable_otp+set}" = set; then :
enableval=$enable_otp;
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-otp" "$LINENO" 5
fi
ol_enable_otp="$ol_arg"
else
ol_enable_otp=${ol_enable_overlays:-no}
fi
# end --enable-otp
# OpenLDAP --enable-ppolicy
# Check whether --enable-ppolicy was given.
...
...
@@ -4691,6 +4717,7 @@ BUILD_DYNLIST=no
BUILD_LASTMOD=no
BUILD_HOMEDIR=no
BUILD_MEMBEROF=no
BUILD_OTP=no
BUILD_PPOLICY=no
BUILD_PROXYCACHE=no
BUILD_REFINT=no
...
...
@@ -25174,6 +25201,26 @@ _ACEOF
fi
if test "$ol_enable_otp" != no ; then
if test $ol_with_tls = no ; then
as_fn_error $? "--enable-otp=$ol_enable_otp requires --with-tls" "$LINENO" 5
fi
BUILD_OTP=$ol_enable_otp
if test "$ol_enable_otp" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS otp_2fa.la"
else
MFLAG=SLAPD_MOD_STATIC
SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS otp_2fa.o"
fi
cat >>confdefs.h <<_ACEOF
#define SLAPD_OVER_OTP $MFLAG
_ACEOF
fi
if test "$ol_enable_ppolicy" != no ; then
BUILD_PPOLICY=$ol_enable_ppolicy
if test "$ol_enable_ppolicy" = mod ; then
...
...
@@ -25657,6 +25704,7 @@ fi
# Check whether --with-xxinstall was given.
...
...
This diff is collapsed.
Click to expand it.
include/portable.hin
+
3
−
0
View file @
2ddcb121
...
...
@@ -987,6 +987,9 @@
/* define for Reverse Group Membership overlay */
#undef SLAPD_OVER_MEMBEROF
/* define for OTP 2-factor Authentication overlay */
#undef SLAPD_OVER_OTP
/* define for Password Policy overlay */
#undef SLAPD_OVER_PPOLICY
...
...
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