From 530d701611dc489161af6f34547174d147655a5a Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 10 Jun 2016 14:53:53 -0400 Subject: [PATCH] configure.ac: Add back HAVE_SYSTEMD When the change was made to add some additional code to make sure systemd was actually installed on the system, the HAVE_SYSTEMD #define was accidently removed. Signed-off-by: Donald Sharp --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 113c1619f8..8758d9d3c1 100755 --- a/configure.ac +++ b/configure.ac @@ -338,6 +338,8 @@ case "${enable_systemd}" in AC_CHECK_LIB(systemd, sd_notify, LIBS="$LIBS -lsystemd") if test $ac_cv_lib_systemd_sd_notify = no; then AC_MSG_ERROR([enable systemd has been specified but systemd development env not found on your system]) + else + AC_DEFINE(HAVE_SYSTEMD,,Compile systemd support in) fi ;; "*") ;; -- 2.39.5