diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-09-21 18:46:48 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-09-21 18:46:48 +0400 |
commit | f11a1c737f7e1d524d8b8bc056a531ab0f669d8e (patch) | |
tree | dabc7393b9bfa3749c267542f21dcbec250602fa /config.h.in | |
parent | 08a5507e764cbdfd0ee1f80a864d906d12071a35 (diff) | |
download | rspamd-f11a1c737f7e1d524d8b8bc056a531ab0f669d8e.tar.gz rspamd-f11a1c737f7e1d524d8b8bc056a531ab0f669d8e.zip |
* Add time out for sync IO as it can cause unpredictable errors
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 5a7439788..2c03d5486 100644 --- a/config.h.in +++ b/config.h.in @@ -36,6 +36,8 @@ #cmakedefine HAVE_NETDB_H 1 +#cmakedefine HAVE_POLL_H 1 + #cmakedefine HAVE_SYSLOG_H 1 #cmakedefine HAVE_LIBUTIL_H 1 @@ -222,6 +224,11 @@ #include <fcntl.h> #endif +/* poll */ +#ifdef HAVE_POLL_H +#include <poll.h> +#endif + /* sys/stat */ #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> |