diff options
author | rofl0r <retnyg@gmx.net> | 2016-12-21 20:58:20 +0000 |
---|---|---|
committer | rofl0r <retnyg@gmx.net> | 2016-12-21 21:01:37 +0000 |
commit | 81a93f9e4fc4a6f134749ea077b797687a12abf9 (patch) | |
tree | 5f90279301875786c82b13db389e6805f1f5c391 /src/log.h | |
parent | 39c92a3f70bb15003540ed5ab277db893a1c707e (diff) |
configure: do not check for standard POSIX headers
addresses #65
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -77,16 +77,7 @@ * don't advocate this, but it could be useful at times.) */ -#ifdef HAVE_SYSLOG_H -# include <syslog.h> -#else -# define LOG_CRIT 2 -# define LOG_ERR 3 -# define LOG_WARNING 4 -# define LOG_NOTICE 5 -# define LOG_INFO 6 -# define LOG_DEBUG 7 -#endif +#include <syslog.h> #define LOG_CONN 8 /* extra to log connections without the INFO stuff */ |