blob: 53cb8b778da9639a9d48c18ac9d86697325b8955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AC_ARG_ENABLE([cifs-idmap-plugin],
[AS_HELP_STRING([--disable-cifs-idmap-plugin],
[do not build CIFS idmap plugin])],
[build_cifs_idmap_plugin=$enableval],
[build_cifs_idmap_plugin=yes])
AS_IF([test x$build_cifs_idmap_plugin = xyes],
[AC_CHECK_HEADER([cifsidmap.h], [],
[AC_MSG_ERROR([you must have the cifsidmap header installed to build the idmap plugin])])
])
AM_CONDITIONAL([BUILD_CIFS_IDMAP_PLUGIN],
[test x$build_cifs_idmap_plugin = xyes])
AM_COND_IF([BUILD_CIFS_IDMAP_PLUGIN],
[AC_DEFINE_UNQUOTED(HAVE_CIFS_IDMAP_PLUGIN, 1, [Build with cifs idmap plugin])])
|