diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2006-02-16 11:51:00 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2006-02-16 11:51:00 +0000 |
commit | ec091abff842fb5fc94d99d50f94080d25666ce9 (patch) | |
tree | fe7ac50efc536a5f4d808a100f28c83b746cff62 /syslogd.c | |
parent | 5478a1a6589fb9a4ce2ac0583478bc309ab81c56 (diff) | |
download | rsyslog-ec091abff842fb5fc94d99d50f94080d25666ce9.tar.gz rsyslog-ec091abff842fb5fc94d99d50f94080d25666ce9.tar.xz rsyslog-ec091abff842fb5fc94d99d50f94080d25666ce9.zip |
some changes to support Solaris
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 21 |
1 files changed, 19 insertions, 2 deletions
@@ -136,7 +136,11 @@ #define SYSLOG_NAMES #include <sys/syslog.h> #include <sys/param.h> +#ifdef __sun +#include <errno.h> +#else #include <sys/errno.h> +#endif #include <sys/ioctl.h> #include <sys/stat.h> #include <sys/wait.h> @@ -155,9 +159,11 @@ #include <netinet/in.h> #include <netdb.h> +#ifndef __sun #ifndef BSD #include <syscall.h> #endif +#endif #include <arpa/nameser.h> #include <arpa/inet.h> #include <resolv.h> @@ -177,6 +183,16 @@ #include <paths.h> #endif +/* missing definitions for solaris + * 2006-02-16 Rger + */ +#ifdef __sun +#define LOG_AUTHPRIV LOG_AUTH +#define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri)) +#define LOG_PRI(p) ((p) & LOG_PRIMASK) +#define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3) +#endif + #include "rsyslog.h" #include "template.h" #include "outchannel.h" @@ -219,6 +235,9 @@ #ifdef BSD #define _PATH_VARRUN "/var/run/" #endif +#ifdef __sun +#define _PATH_VARRUN "/var/run/" +#endif #define _PATH_LOGPID _PATH_VARRUN SYSLOGD_PIDNAME #else #define _PATH_LOGPID "/etc/" SYSLOGD_PIDNAME @@ -3637,8 +3656,6 @@ void printline(char *hname, char *msg, int bParseHost) } /* Decode a priority into textual information like auth.emerg. - * rgerhards: This needs to be changed for syslog-protocol - severities - * are then supported up to 2^32-1. */ char *textpri(pri) int pri; |