diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-03-24 18:38:11 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-03-24 18:38:11 +0300 |
commit | 5dbf570b7df0e7c9770432884f95c14b193b5b30 (patch) | |
tree | 547448e51751b47179c46b19b9d26f2991642b30 /config.h.in | |
parent | 616e4a7d03fba715185f55d1298cc09377313591 (diff) | |
download | rspamd-5dbf570b7df0e7c9770432884f95c14b193b5b30.tar.gz rspamd-5dbf570b7df0e7c9770432884f95c14b193b5b30.zip |
* Fix many compile time warnings and polish code
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 982046338..1fc9108cb 100644 --- a/config.h.in +++ b/config.h.in @@ -31,6 +31,9 @@ #cmakedefine HAVE_STDBOOL_H 1 +#cmakedefine HAVE_ARPA_INET_H 1 +#cmakedefine HAVE_NETINET_IN_H 1 + #cmakedefine HAVE_NETDB_H 1 #cmakedefine HAVE_SYSLOG_H 1 @@ -56,6 +59,7 @@ #cmakedefine HAVE_SYS_STAT_H 1 #cmakedefine HAVE_SYS_WAIT_H 1 #cmakedefine HAVE_SYS_PARAM_H 1 +#cmakedefine HAVE_SYS_FILE_H 1 #cmakedefine HAVE_PIDFILE 1 @@ -133,6 +137,11 @@ #include <sys/socket.h> #endif +/* sys/file.h */ +#ifdef HAVE_SYS_FILE_H +#include <sys/file.h> +#endif + /* sys/mman */ #ifdef HAVE_SYS_MMAN_H #include <sys/mman.h> |