diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-10-24 18:30:43 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-10-24 18:30:43 +0300 |
commit | da3412c27b23e8dbb9330b5c93e4b040d8b6f178 (patch) | |
tree | 2333425e129ad0030c996fefc2c524c7fa5c9844 /config.h.in | |
parent | e8c23daa735874d7a4a5f45d46f96c2702f7f7d1 (diff) | |
download | rspamd-da3412c27b23e8dbb9330b5c93e4b040d8b6f178.tar.gz rspamd-da3412c27b23e8dbb9330b5c93e4b040d8b6f178.zip |
Fix siginfo detection code.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index eb20d7b5d..950bf2ef4 100644 --- a/config.h.in +++ b/config.h.in @@ -40,6 +40,8 @@ #cmakedefine HAVE_SYSLOG_H 1 +#cmakedefine HAVE_SIGINFO_H 1 + #cmakedefine HAVE_LIBUTIL_H 1 #cmakedefine HAVE_LIBGEN_H 1 @@ -369,6 +371,9 @@ #include <errno.h> #include <signal.h> +#ifdef HAVE_SIGINFO_H +# include <siginfo.h> +#endif #include <event.h> #include <glib.h> |