chiark / gitweb /
systemctl: suppress duplicate newline if there's not log output in "systemctl status"
[elogind.git] / src / shared / selinux-util.c
index 4310a975391d89468a6f5282eeab7e5cad9243cc..026ae5a9e85b2f8e793f80e3a05fbf939d8134ec 100644 (file)
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
-#include <selinux/selinux.h>
-
 #include "selinux-util.h"
 
+#ifdef HAVE_SELINUX
+
+#include <selinux/selinux.h>
+
 static int use_selinux_cached = -1;
 
 bool use_selinux(void) {
@@ -36,3 +38,14 @@ bool use_selinux(void) {
 void retest_selinux(void) {
         use_selinux_cached = -1;
 }
+
+#else
+
+bool use_selinux(void) {
+        return false;
+}
+
+void retest_selinux(void) {
+}
+
+#endif