summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2014-09-02 15:54:13 +0200
committerJakub Hrozek <jhrozek@redhat.com>2014-09-02 17:29:36 +0200
commitfe008197e415e10994e1fd96a9ff060be77ac6c4 (patch)
tree4e2de57f0f7f0da90f6ad4c2899b5ba7799fec1a /src/conf_macros.m4
parentf929e9e5a6daa71a22176b08eb7983fb4b708180 (diff)
downloadsssd-fe008197e415e10994e1fd96a9ff060be77ac6c4.tar.gz
sssd-fe008197e415e10994e1fd96a9ff060be77ac6c4.tar.xz
sssd-fe008197e415e10994e1fd96a9ff060be77ac6c4.zip
AUTOCONF: Update detection of libnfsidmap
Reviewed-by: Michal Židek <mzidek@redhat.com> Reviewed-by: Roland Mainz <rmainz@redhat.com>
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index c8fadd2ed..4aa58138c 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -709,19 +709,19 @@ AC_ARG_ENABLE([dbus-tests],
AM_CONDITIONAL([BUILD_DBUS_TESTS], [test x$build_dbus_tests = xyes])
AC_DEFUN([WITH_NFS],
- [ AC_ARG_WITH([nfs_idmap],
+ [ AC_ARG_WITH([nfsv4-idmapd-plugin],
[AC_HELP_STRING([--with-nfsv4-idmapd-plugin],
[Whether to build with NFSv4 IDMAP support [yes]]
)
],
- [with_nfs_idmap=$withval],
- with_nfs_idmap=yes
+ [with_nfsv4_idmap=$withval],
+ [with_nfsv4_idmap=yes]
)
- if test x"$with_nfs_idmap" = xyes; then
+ if test x"$with_nfsv4_idmap" = xyes; then
AC_DEFINE(BUILD_NFS_IDMAP, 1, [whether to build with NFSv4 IDMAP support])
fi
- AM_CONDITIONAL([BUILD_NFS_IDMAP], [test x"$with_nfs_idmap" = xyes])
+ AM_CONDITIONAL([BUILD_NFS_IDMAP], [test x"$with_nfsv4_idmap" = xyes])
])
AC_DEFUN([WITH_NFS_LIB_PATH],