Package: atsar Version: 1.7-2 Severity: important Tags: patch Hi,
currently your package FTBFS on GNU/kFreeBSD due to a missing define of HZ. Please find attached a patch to fix this. FTR, the build logs are available on <http://experimental.ftbfs.de/>. Cheers, -- Cyril Brulebois
--- atsar-1.7/include/includes.h 2007-03-21 15:20:30.878820000 +0100 +++ atsar-1.7/include/includes.h 2007-03-21 15:22:26.000000000 +0100 @@ -21,5 +21,9 @@ #include <regex.h> #include <stdlib.h> +#if defined(__FreeBSD_kernel__) +#define HZ CLOCKS_PER_SEC +#endif + #include "linuxstat.h" #include "atsar.h"

