summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m416
1 files changed, 16 insertions, 0 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index 4a41da2b..4630f315 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -217,3 +217,19 @@ AC_DEFUN([WITH_NSCD],
fi
])
+AC_DEFUN([WITH_SEMANAGE],
+ [ AC_ARG_WITH([semanage],
+ [AC_HELP_STRING([--with-semanage],
+ [Whether to build with SELinux user management support [yes]]
+ )
+ ],
+ [],
+ with_semanage=yes
+ )
+ if test x"$with_semanage" == xyes; then
+ HAVE_SEMANAGE=1
+ AC_SUBST(HAVE_SEMANAGE)
+ AC_DEFINE_UNQUOTED(HAVE_SEMANAGE, 1, [Build with SELinux support])
+ fi
+ AM_CONDITIONAL([BUILD_SEMANAGE], [test x"$with_semanage" = xyes])
+ ])