aboutsummaryrefslogtreecommitdiffstats
path: root/erts/etc
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2013-09-24 08:36:27 +0200
committerFredrik Gustafsson <[email protected]>2013-09-24 08:36:27 +0200
commit4760709aae1bd39aa6f6de7157a7d15ca36ff173 (patch)
treee099891b7b7085ce2226e44398361575263b8a1e /erts/etc
parentcc3c34fce28062afcaadc288b69939ced8fd8cde (diff)
parent5fb8ad6250e2a40b12824f89c42dc91b04a39c40 (diff)
downloadotp-4760709aae1bd39aa6f6de7157a7d15ca36ff173.tar.gz
otp-4760709aae1bd39aa6f6de7157a7d15ca36ff173.tar.bz2
otp-4760709aae1bd39aa6f6de7157a7d15ca36ff173.zip
Merge branch 'maint'
Diffstat (limited to 'erts/etc')
-rw-r--r--erts/etc/unix/run_erl.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/erts/etc/unix/run_erl.c b/erts/etc/unix/run_erl.c
index b69e31f784..2018bc007c 100644
--- a/erts/etc/unix/run_erl.c
+++ b/erts/etc/unix/run_erl.c
@@ -60,7 +60,7 @@
#include <dirent.h>
#include <termios.h>
#include <time.h>
-#ifndef NO_SYSLOG
+#ifdef HAVE_SYSLOG_H
# include <syslog.h>
#endif
#ifdef HAVE_PTY_H
@@ -197,8 +197,9 @@ static char* outbuf_in;
#endif
-#ifdef NO_SYSLOG
+#ifndef HAVE_SYSLOG_H
# define OPEN_SYSLOG() ((void) 0)
+# define LOG_ERR NULL
#else
# define OPEN_SYSLOG() openlog(simple_basename(program_name), \
LOG_PID|LOG_CONS|LOG_NOWAIT,LOG_USER)
@@ -415,7 +416,7 @@ int main(int argc, char **argv)
}
#endif
-#ifndef NO_SYSLOG
+#ifdef HAVE_SYSLOG_H
/* Before fiddling with file descriptors we make sure syslog is turned off
or "closed". In the single case where we might want it again,
we will open it again instead. Would not want syslog to
@@ -1163,7 +1164,7 @@ static void error_logf(int priority, int line, const char *format, ...)
va_list args;
va_start(args, format);
-#ifndef NO_SYSLOG
+#ifdef HAVE_SYSLOG_H
if (run_daemon) {
vsyslog(priority,format,args);
}