diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | plugins/impstats/impstats.c | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,4 +1,9 @@ --------------------------------------------------------------------------- +Version 7.4.2 [v7.4-stable] 2013-06-?? +- solved build problems on FreeBSD + closes: http://bugzilla.adiscon.com/show_bug.cgi?id=458 + Thanks to Christiano for reproting and suggesting patches +--------------------------------------------------------------------------- Version 7.4.1 [v7.4-stable] 2013-06-17 - imjournal: add ratelimiting capability The original imjournal code did not support ratelimiting at all. We diff --git a/plugins/impstats/impstats.c b/plugins/impstats/impstats.c index cdd205fd..79749e21 100644 --- a/plugins/impstats/impstats.c +++ b/plugins/impstats/impstats.c @@ -29,6 +29,10 @@ #include <pthread.h> #include <fcntl.h> #include <sys/uio.h> +#if defined(__FreeBSD__) +#include <sys/stat.h> +#endif + #include "dirty.h" #include "cfsysline.h" #include "module-template.h" |