From 0b6018f3d9d437fdbad8f39dca2409d63a5df854 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 2 Oct 2012 18:15:14 -0400 Subject: [PATCH] build-sys: fix !HAVE_SELINUX case --- src/shared/selinux-util.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/shared/selinux-util.c b/src/shared/selinux-util.c index 4310a9753..ff3375607 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 -- 2.30.2