Package: dnstop Version: 20080321-1 Severity: important Tags: patch User: debian-...@lists.debian.org Usertags: kfreebsd
Hi, your package FTBFS on GNU/kFreeBSD: | gcc -g -Wall -c -o hashtbl.o hashtbl.c | In file included from hashtbl.c:17: | hashtbl.h:38: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'hashlittle' | hashtbl.h:39: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'hashbig' | hashtbl.h:40: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'hashword' | make: *** [hashtbl.o] Error 1 Please find attached a patch to fix that. Mraw, KiBi.
--- a/hashtbl.h +++ b/hashtbl.h @@ -7,6 +7,8 @@ * reserved. See the LICENSE file for details. */ +#include <stdint.h> + typedef struct _hashitem { const void *key; void *data;