> -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include
> -I/usr/X11R6/include -mcpu=i586 -march=i586 -O3 -fomit-frame-pointer -pipe
> -mcpu=pentiumpro -march=i586 -ffast-math -fno-strength-reduce -Wall -Wunused
> -c liblavrec.c -MT liblavrec.lo -MD -MP -MF .deps/liblavrec.TPlo -fPIC -DPIC
> -o liblavrec.o
> cc1: warning: changing search order for system directory "/usr/local/include"
> cc1: warning: as it has already been specified as a non-system directory
> In file included from /usr/include/linux/vfs.h:4,
> from /usr/include/linux/fs.h:13,
> from /usr/include/linux/videodev.h:6,
> from liblavrec.c:53:
> /usr/include/asm/statfs.h:12: redefinition of `struct statfs'
>
This is because glibc has a statfs and statfs.h apparently also has a statfs.
There is no #ifdef __KERNEL__ wrapped around the kernel one, so it fails.
-- Geoff.