From f36078af138f052cd9a30360867b0ebd0805af5e Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 2 Feb 2012 00:59:13 +0100 Subject: BUILD: Introduce a --with-autofs config option This would allow to select the autofs feature during build without having to select the other features. --- configure.ac | 1 + src/conf_macros.m4 | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/configure.ac b/configure.ac index 65136e1cd..c465c56c1 100644 --- a/configure.ac +++ b/configure.ac @@ -95,6 +95,7 @@ WITH_LIBNL WITH_NOLOGIN_SHELL WITH_APP_LIBS WITH_SUDO +WITH_AUTOFS m4_include([src/external/pkg.m4]) m4_include([src/external/libpopt.m4]) diff --git a/src/conf_macros.m4 b/src/conf_macros.m4 index 01bfc9003..05500b27f 100644 --- a/src/conf_macros.m4 +++ b/src/conf_macros.m4 @@ -423,3 +423,25 @@ AC_DEFUN([WITH_SUDO], fi AM_CONDITIONAL([BUILD_SUDO], [test x"$with_sudo" = xyes]) ]) + +AC_DEFUN([WITH_AUTOFS], + [ AC_ARG_WITH([autofs], + [AC_HELP_STRING([--with-autofs], + [Whether to build with autofs support [no]] + ) + ], + [with_autofs=$withval], + ) + + 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 + AM_CONDITIONAL([BUILD_AUTOFS], [test x"$with_autofs" = xyes]) + ]) -- cgit