diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-29 20:35:00 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-29 20:35:00 +0400 |
commit | 4c4773d96b1b2a157009590908fce032696281c5 (patch) | |
tree | c9709f5a21b4eafbfee04327884cb5c6d39006e4 /src/plugins/chartable.c | |
parent | 513e304bc6255492eee5c78c97d222037087f429 (diff) | |
download | rspamd-4c4773d96b1b2a157009590908fce032696281c5.tar.gz rspamd-4c4773d96b1b2a157009590908fce032696281c5.zip |
* Fix build under CentOS 5 with old glib 2.12
* Fix build of rspamd with CMAKE_BINARY_DIR differs from CMAKE_SOURCE_DIR
Rework include style.
Diffstat (limited to 'src/plugins/chartable.c')
-rw-r--r-- | src/plugins/chartable.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/plugins/chartable.c b/src/plugins/chartable.c index ea30fca87..cdf7e3e4e 100644 --- a/src/plugins/chartable.c +++ b/src/plugins/chartable.c @@ -31,14 +31,13 @@ * (e.g. if threshold is 0.1 than charset change should occure more often than in 10 symbols), default: 0.1 */ -#include "../config.h" -#include "../main.h" -#include "../message.h" -#include "../modules.h" -#include "../cfg_file.h" -#include "../expressions.h" -#include "../view.h" -#include "../cfg_xml.h" +#include "config.h" +#include "main.h" +#include "message.h" +#include "cfg_file.h" +#include "expressions.h" +#include "view.h" +#include "cfg_xml.h" #define DEFAULT_SYMBOL "R_CHARSET_MIXED" #define DEFAULT_THRESHOLD 0.1 |