mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#9437 - Regenerate configure
This commit is contained in:
parent
fe7e4697e9
commit
2ddcb121a3
2 changed files with 51 additions and 0 deletions
48
configure
vendored
48
configure
vendored
|
|
@ -687,6 +687,7 @@ BUILD_REMOTEAUTH
|
||||||
BUILD_REFINT
|
BUILD_REFINT
|
||||||
BUILD_PROXYCACHE
|
BUILD_PROXYCACHE
|
||||||
BUILD_PPOLICY
|
BUILD_PPOLICY
|
||||||
|
BUILD_OTP
|
||||||
BUILD_MEMBEROF
|
BUILD_MEMBEROF
|
||||||
BUILD_HOMEDIR
|
BUILD_HOMEDIR
|
||||||
BUILD_LASTMOD
|
BUILD_LASTMOD
|
||||||
|
|
@ -883,6 +884,7 @@ enable_dyngroup
|
||||||
enable_dynlist
|
enable_dynlist
|
||||||
enable_homedir
|
enable_homedir
|
||||||
enable_memberof
|
enable_memberof
|
||||||
|
enable_otp
|
||||||
enable_ppolicy
|
enable_ppolicy
|
||||||
enable_proxycache
|
enable_proxycache
|
||||||
enable_refint
|
enable_refint
|
||||||
|
|
@ -1594,6 +1596,7 @@ SLAPD Overlay Options:
|
||||||
--enable-dynlist Dynamic List overlay no|yes|mod [no]
|
--enable-dynlist Dynamic List overlay no|yes|mod [no]
|
||||||
--enable-homedir Home Directory Management 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-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-ppolicy Password Policy overlay no|yes|mod [no]
|
||||||
--enable-proxycache Proxy Cache overlay no|yes|mod [no]
|
--enable-proxycache Proxy Cache overlay no|yes|mod [no]
|
||||||
--enable-refint Referential Integrity overlay no|yes|mod [no]
|
--enable-refint Referential Integrity overlay no|yes|mod [no]
|
||||||
|
|
@ -3833,6 +3836,7 @@ Overlays="accesslog \
|
||||||
dynlist \
|
dynlist \
|
||||||
homedir \
|
homedir \
|
||||||
memberof \
|
memberof \
|
||||||
|
otp \
|
||||||
ppolicy \
|
ppolicy \
|
||||||
proxycache \
|
proxycache \
|
||||||
refint \
|
refint \
|
||||||
|
|
@ -4115,6 +4119,28 @@ fi
|
||||||
|
|
||||||
# end --enable-memberof
|
# 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
|
# OpenLDAP --enable-ppolicy
|
||||||
|
|
||||||
# Check whether --enable-ppolicy was given.
|
# Check whether --enable-ppolicy was given.
|
||||||
|
|
@ -4691,6 +4717,7 @@ BUILD_DYNLIST=no
|
||||||
BUILD_LASTMOD=no
|
BUILD_LASTMOD=no
|
||||||
BUILD_HOMEDIR=no
|
BUILD_HOMEDIR=no
|
||||||
BUILD_MEMBEROF=no
|
BUILD_MEMBEROF=no
|
||||||
|
BUILD_OTP=no
|
||||||
BUILD_PPOLICY=no
|
BUILD_PPOLICY=no
|
||||||
BUILD_PROXYCACHE=no
|
BUILD_PROXYCACHE=no
|
||||||
BUILD_REFINT=no
|
BUILD_REFINT=no
|
||||||
|
|
@ -25174,6 +25201,26 @@ _ACEOF
|
||||||
|
|
||||||
fi
|
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
|
if test "$ol_enable_ppolicy" != no ; then
|
||||||
BUILD_PPOLICY=$ol_enable_ppolicy
|
BUILD_PPOLICY=$ol_enable_ppolicy
|
||||||
if test "$ol_enable_ppolicy" = mod ; then
|
if test "$ol_enable_ppolicy" = mod ; then
|
||||||
|
|
@ -25657,6 +25704,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --with-xxinstall was given.
|
# Check whether --with-xxinstall was given.
|
||||||
|
|
|
||||||
|
|
@ -987,6 +987,9 @@
|
||||||
/* define for Reverse Group Membership overlay */
|
/* define for Reverse Group Membership overlay */
|
||||||
#undef SLAPD_OVER_MEMBEROF
|
#undef SLAPD_OVER_MEMBEROF
|
||||||
|
|
||||||
|
/* define for OTP 2-factor Authentication overlay */
|
||||||
|
#undef SLAPD_OVER_OTP
|
||||||
|
|
||||||
/* define for Password Policy overlay */
|
/* define for Password Policy overlay */
|
||||||
#undef SLAPD_OVER_PPOLICY
|
#undef SLAPD_OVER_PPOLICY
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue