diff options
author | Peter Lemenkov <[email protected]> | 2014-06-06 15:29:49 +0400 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-11-24 17:32:48 +0100 |
commit | 59740d8fee66f3326b30ac25882b52ffada4bac2 (patch) | |
tree | f9505c9f27b84efb5a32353d0362b72d7be82f8d /erts/configure.in | |
parent | 4e969748e47566c974ce526ade50c34ab62e3b26 (diff) | |
download | otp-59740d8fee66f3326b30ac25882b52ffada4bac2.tar.gz otp-59740d8fee66f3326b30ac25882b52ffada4bac2.tar.bz2 otp-59740d8fee66f3326b30ac25882b52ffada4bac2.zip |
epmd: Added systemd notify support to EPMD
Signed-off-by: Peter Lemenkov <[email protected]>
Diffstat (limited to 'erts/configure.in')
-rw-r--r-- | erts/configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/configure.in b/erts/configure.in index 9864d03cde..a594d59355 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -1691,10 +1691,13 @@ systemd_daemon_save_LIBS=$LIBS LIBS= AC_SEARCH_LIBS(sd_listen_fds,[systemd systemd-daemon], [have_sd_listen_fds=yes],[have_sd_listen_fds=no],$systemd_daemon_save_LIBS) +AC_SEARCH_LIBS(sd_notify,[systemd systemd-daemon], + [have_sd_notify=yes],[have_sd_notify=no],$systemd_daemon_save_LIBS) AC_CHECK_HEADERS(systemd/sd-daemon.h, [have_systemd_sd_daemon_h=yes],[have_systemd_sd_daemon_h=no]) if test x"$have_sd_listen_fds" = x"yes" && \ + test x"$have_sd_notify" = x"yes" && \ test x"$have_systemd_sd_daemon_h" = x"yes"; then AC_DEFINE([HAVE_SYSTEMD_DAEMON],[1],[Define if you have systemd daemon]) SYSTEMD_DAEMON_LIBS=$LIBS |