I had to add stdint.h to spipe/pushbits.c before spipe would compile on archlinux. uint8_t was returning unknown type without it. Thanks.
-- James Turner [email protected]
--- spipe/pushbits.c.orig 2012-08-30 13:02:55.334749608 -0400 +++ spipe/pushbits.c 2012-08-30 13:03:13.344748360 -0400 @@ -2,6 +2,7 @@ #include <assert.h> #include <pthread.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h>
