summaryrefslogtreecommitdiffstats
path: root/src/external/systemd.m4
diff options
context:
space:
mode:
Diffstat (limited to 'src/external/systemd.m4')
-rw-r--r--src/external/systemd.m48
1 files changed, 8 insertions, 0 deletions
diff --git a/src/external/systemd.m4 b/src/external/systemd.m4
new file mode 100644
index 000000000..2c26dc19b
--- /dev/null
+++ b/src/external/systemd.m4
@@ -0,0 +1,8 @@
+dnl A macro to check presence of systemd on the system
+AC_DEFUN([AM_CHECK_SYSTEMD],
+[
+ PKG_CHECK_EXISTS(systemd,
+ [ HAVE_SYSTEMD=1, AC_SUBST(HAVE_SYSTEMD) ],
+ [AC_MSG_ERROR([Could not detect systemd presence])]
+ )
+])