diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-22 14:57:03 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-22 14:57:03 +0100 |
commit | fc9211cf8dea975503e28d1cba6a625fe9464e81 (patch) | |
tree | f53976bbc904fd16a7a4311e110d27d0d8806c95 /config.h.in | |
parent | 05d349875b7b475359c779997464c2589979e545 (diff) | |
download | rspamd-fc9211cf8dea975503e28d1cba6a625fe9464e81.tar.gz rspamd-fc9211cf8dea975503e28d1cba6a625fe9464e81.zip |
Add ability to sign configs using rspamd.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 31a0dd2d6..dd1af0f55 100644 --- a/config.h.in +++ b/config.h.in @@ -203,6 +203,9 @@ #cmakedefine HAVE_FETCH_H 1 #cmakedefine CURL_FOUND 1 +#cmakedefine HAVE_READPASSPHRASE_H 1 +#cmakedefine HAVE_TERMIOS_H 1 + #if (defined(__i386__) || defined(__x86_64__) || defined(_M_IX86)) /* Use murmur hash for UTHash for these platforms */ #define HASH_FUNCTION HASH_MUR @@ -431,6 +434,18 @@ #include <curl/curl.h> #endif +#ifdef HAVE_READPASSPHRASE_H +#include <readpassphrase.h> +#endif + +#ifdef HAVE_TERMIOS_H +#include <termios.h> +#endif + +#ifdef HAVE_PATHS_H +#include <paths.h> +#endif + #include <errno.h> #include <signal.h> #ifdef HAVE_SIGINFO_H |