From af4ffe1001adcc0a96897e426d26444f07af9aa1 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 26 Sep 2013 10:27:33 +0200 Subject: Add CIFS idmap plugin https://fedorahosted.org/sssd/ticket/1534 --- src/conf_macros.m4 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/conf_macros.m4') diff --git a/src/conf_macros.m4 b/src/conf_macros.m4 index 1aecaea4d..4be819d4a 100644 --- a/src/conf_macros.m4 +++ b/src/conf_macros.m4 @@ -265,6 +265,20 @@ AC_DEFUN([WITH_KRB5_PLUGIN_PATH], AC_SUBST(krb5pluginpath) ]) +AC_DEFUN([WITH_CIFS_PLUGIN_PATH], + [ AC_ARG_WITH([cifs-plugin-path], + [AC_HELP_STRING([--with-cifs-plugin-path=PATH], + [Path to cifs-utils plugin store [/usr/lib/cifs-utils]] + ) + ] + ) + cifspluginpath="${libdir}/cifs-utils" + if test x"$with_cifs_plugin_path" != x; then + cifspluginpath=$with_cifs_plugin_path + fi + AC_SUBST(cifspluginpath) + ]) + AC_DEFUN([WITH_KRB5_RCACHE_DIR], [ AC_ARG_WITH([krb5-rcache-dir], [AC_HELP_STRING([--with-krb5-rcache-dir=PATH], -- cgit