diff --git a/src/shared/selinux-util.c b/src/shared/selinux-util.c index 4310a97539..ff3375607f 100644 --- a/src/shared/selinux-util.c +++ b/src/shared/selinux-util.c @@ -19,10 +19,12 @@ along with systemd; If not, see . ***/ -#include - #include "selinux-util.h" +#ifdef HAVE_SELINUX + +#include + static int use_selinux_cached = -1; bool use_selinux(void) { @@ -36,3 +38,5 @@ bool use_selinux(void) { void retest_selinux(void) { use_selinux_cached = -1; } + +#endif