parent
9ebd2c0478
commit
2561177765
|
@ -2426,7 +2426,7 @@ fi
|
|||
|
||||
# Check whether --with-internal_authentication was given.
|
||||
if test "${with_internal_authentication+set}" = set; then :
|
||||
withval=$with_internal_authentication; internal_authentication=yes
|
||||
withval=$with_internal_authentication; internal_authentication=$withval
|
||||
else
|
||||
internal_authentication=yes
|
||||
|
||||
|
@ -2436,7 +2436,7 @@ fi
|
|||
|
||||
# Check whether --with-ldap_authentication was given.
|
||||
if test "${with_ldap_authentication+set}" = set; then :
|
||||
withval=$with_ldap_authentication; ldap_authentication=yes
|
||||
withval=$with_ldap_authentication; ldap_authentication=$withval
|
||||
else
|
||||
ldap_authentication=no
|
||||
|
||||
|
|
|
@ -136,13 +136,13 @@ AC_ARG_WITH([internal_db_user],
|
|||
|
||||
AC_ARG_WITH([internal_authentication],
|
||||
AC_HELP_STRING([--with-internal-authentication], [use the internal database for authentication (default: yes)]),
|
||||
internal_authentication=yes,
|
||||
internal_authentication=$withval,
|
||||
internal_authentication=yes
|
||||
)
|
||||
|
||||
AC_ARG_WITH([ldap_authentication],
|
||||
AC_HELP_STRING([--with-ldap-authentication], [use a ldap server for authentication (default: no)]),
|
||||
ldap_authentication=yes,
|
||||
ldap_authentication=$withval,
|
||||
ldap_authentication=no
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue