aboutsummaryrefslogtreecommitdiffstats
path: root/erts/epmd/src/epmd_int.h
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-11-25 11:55:04 +0100
committerLukas Larsson <[email protected]>2014-11-25 11:55:04 +0100
commitc18819e771228cb76c07ae88467d56e09e446165 (patch)
tree9f3f66107da5fdbebfd17d5b9e1dca20be266936 /erts/epmd/src/epmd_int.h
parentb0a48f37a5c04d158369cc69d5a8afafd67663cd (diff)
parentc181536aabe2140d3547ba34c6b7ef2ae0109c65 (diff)
downloadotp-c18819e771228cb76c07ae88467d56e09e446165.tar.gz
otp-c18819e771228cb76c07ae88467d56e09e446165.tar.bz2
otp-c18819e771228cb76c07ae88467d56e09e446165.zip
Merge branch 'maint'
* maint: epmd: Unify systemd autoconf macros usage epmd: Added systemd notify support to EPMD
Diffstat (limited to 'erts/epmd/src/epmd_int.h')
-rw-r--r--erts/epmd/src/epmd_int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/erts/epmd/src/epmd_int.h b/erts/epmd/src/epmd_int.h
index c8f2192f7f..52badd7086 100644
--- a/erts/epmd/src/epmd_int.h
+++ b/erts/epmd/src/epmd_int.h
@@ -125,9 +125,9 @@
# include "sys/select.h"
#endif
-#ifdef HAVE_SYSTEMD_SD_DAEMON_H
+#ifdef HAVE_SYSTEMD_DAEMON
# include <systemd/sd-daemon.h>
-#endif
+#endif /* HAVE_SYSTEMD_DAEMON */
/* ************************************************************************ */
/* Replace some functions by others by making the function name a macro */
@@ -340,9 +340,9 @@ typedef struct {
int listenfd[MAX_LISTEN_SOCKETS];
char *addresses;
char **argv;
-#ifdef HAVE_SYSTEMD_SD_DAEMON_H
+#ifdef HAVE_SYSTEMD_DAEMON
int is_systemd;
-#endif
+#endif /* HAVE_SYSTEMD_DAEMON */
} EpmdVars;
void dbg_printf(EpmdVars*,int,const char*,...);