Package: vstream Severity: serious This package fails to build because of recent changes in libc6-dev to be more standards compliant. The file stream.c fails to compile with this:
stream.c: In function `tc': stream.c:150: storage size of `tms' isn't known stream.c:152: warning: implicit declaration of function `time' stream.c:153: warning: implicit declaration of function `localtime' stream.c:153: invalid type argument of `unary *' stream.c:161: warning: implicit declaration of function `asctime' stream.c:161: warning: format argument is not a pointer (arg 2) stream.c:162: warning: implicit declaration of function `mktime' stream.c:150: warning: unused variable `tms' make[1]: *** [stream] Error 1 It needs to #include <time.h> to resolve this. Ben