diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in index 68a39e367..6fd2de366 100644 --- a/config.h.in +++ b/config.h.in @@ -65,6 +65,7 @@ #cmakedefine HAVE_SYS_PARAM_H 1 #cmakedefine HAVE_SYS_FILE_H 1 #cmakedefine HAVE_SYS_RESOURCE_H 1 +#cmakedefine HAVE_SYS_TIMEDB_H 1 #cmakedefine HAVE_PIDFILE 1 @@ -122,9 +123,12 @@ #cmakedefine BUILD_STATIC 1 #cmakedefine HAVE_SENDFILE 1 -#cmakedefine HAVE_MKSTEMP 1 #cmakedefine HAVE_SYS_SENDFILE_H 1 +#cmakedefine HAVE_MKSTEMP 1 + +#cmakedefine HAVE_CLOCK_GETTIME 1 + #define RVERSION "${RSPAMD_VERSION}" #define RSPAMD_MASTER_SITE_URL "${RSPAMD_MASTER_SITE_URL}" @@ -219,6 +223,11 @@ #include <time.h> #endif +/* timedb */ +#ifdef HAVE_SYS_TIMEDB_H +#include <sys/timedb.h> +#endif + /* sysexits */ #ifdef HAVE_SYSEXITS_H #include <sysexits.h> |