diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-13 18:50:29 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-13 18:50:29 +0400 |
commit | 868842d9c133e8823365386200f5c48442a068b5 (patch) | |
tree | 9a6961134b6d5612e870142069166cdbb5ed2ca8 /config.h.in | |
parent | 9aa989ea76ee78107ed7ae02a3d1b8e297f57b4c (diff) | |
download | rspamd-868842d9c133e8823365386200f5c48442a068b5.tar.gz rspamd-868842d9c133e8823365386200f5c48442a068b5.zip |
* Add bayesian classifier (initial version)
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 15b629507..645310a5e 100644 --- a/config.h.in +++ b/config.h.in @@ -44,6 +44,8 @@ #cmakedefine HAVE_LIBGEN_H 1 +#cmakedefine HAVE_SEARCH_H 1 + #cmakedefine HAVE_LOCALE_H 1 #cmakedefine HAVE_GRP_H 1 @@ -307,6 +309,10 @@ #define HAVE_DIRNAME 1 #endif +#ifdef HAVE_SEARCH_H +#include <search.h> +#endif + #ifdef HAVE_LOCALE_H #include <locale.h> #define HAVE_SETLOCALE 1 |