Package: kanatest Version: 0.4.2-1 Severity: important Tags: patch Hi,
our package FTBFS on GNU/kFreeBSD because of an unconditional include of <linux/limits.h>. Please find attached a patch to fix this. I'm not committing it directly into our SVN so that it gets a chance to be reviewed and approved by someone else. Cheers, -- Cyril Brulebois
--- kanatest-0.4.2~/src/stats.c 2007-03-31 06:30:28.398495000 +0200 +++ kanatest-0.4.2/src/stats.c 2007-03-31 06:30:41.000000000 +0200 @@ -30,7 +30,9 @@ #include <gdk/gdkkeysyms.h> #include <unistd.h> #include <sys/stat.h> +#ifdef __linux__ #include <linux/limits.h> +#endif #include <libxml/xmlmemory.h> #include <libxml/parser.h>

