diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2012-08-27 22:15:17 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-09-24 15:11:03 +0200 |
commit | b2f9e5b7d553172401a340eb4a9c3abda6b5db43 (patch) | |
tree | 5586176aa8dc67a53771f5ca4b3b8bb9794c3309 /src/conf_macros.m4 | |
parent | 326f4fc3125e155ee2d484fe921aafddd6b5a49d (diff) | |
download | sssd2-b2f9e5b7d553172401a340eb4a9c3abda6b5db43.tar.gz sssd2-b2f9e5b7d553172401a340eb4a9c3abda6b5db43.tar.xz sssd2-b2f9e5b7d553172401a340eb4a9c3abda6b5db43.zip |
autofs, sudo, ssh and PAC are not experimental anymore
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r-- | src/conf_macros.m4 | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4 index 4dbbd769..65f4d6ce 100644 --- a/src/conf_macros.m4 +++ b/src/conf_macros.m4 @@ -467,19 +467,13 @@ AC_DEFUN([WITH_APP_LIBS], AC_DEFUN([WITH_SUDO], [ AC_ARG_WITH([sudo], [AC_HELP_STRING([--with-sudo], - [Whether to build with sudo support [no]] + [Whether to build with sudo support [yes]] ) ], [with_sudo=$withval], + with_sudo=yes ) - dnl Remove when sudo goes out of experimental - if test x"$enable_all_experimental_features" = xyes; then - if test x"$with_sudo" != xno; then - with_sudo=yes - fi - fi - if test x"$with_sudo" = xyes; then AC_DEFINE(BUILD_SUDO, 1, [whether to build with SUDO support]) fi @@ -503,19 +497,13 @@ AC_DEFUN([WITH_SUDO_LIB_PATH], AC_DEFUN([WITH_AUTOFS], [ AC_ARG_WITH([autofs], [AC_HELP_STRING([--with-autofs], - [Whether to build with autofs support [no]] + [Whether to build with autofs support [yes]] ) ], [with_autofs=$withval], + with_autofs=yes ) - dnl Remove when autofs goes out of experimental - if test x"$enable_all_experimental_features" = xyes; then - if test x"$with_autofs" != xno; then - with_autofs=yes - fi - fi - if test x"$with_autofs" = xyes; then AC_DEFINE(BUILD_AUTOFS, 1, [whether to build with AUTOFS support]) fi @@ -525,19 +513,13 @@ AC_DEFUN([WITH_AUTOFS], AC_DEFUN([WITH_SSH], [ AC_ARG_WITH([ssh], [AC_HELP_STRING([--with-ssh], - [Whether to build with SSH support [no]] + [Whether to build with SSH support [yes]] ) ], [with_ssh=$withval], + with_ssh=yes ) - dnl Remove when SSH goes out of experimental - if test x"$enable_all_experimental_features" = xyes; then - if test x"$with_ssh" != xno; then - with_ssh=yes - fi - fi - if test x"$with_ssh" = xyes; then AC_DEFINE(BUILD_SSH, 1, [whether to build with SSH support]) fi |