Fix enable and disable authentication

refs #4941
This commit is contained in:
Marius Hein 2013-10-22 14:16:46 +02:00
parent 9ebd2c0478
commit 2561177765
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -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

View File

@ -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
)