|
From: Nicholas N. <nj...@ca...> - 2003-06-12 20:44:55
|
On 12 Jun 2003, Robert Walsh wrote: > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I./demangle -I../include -DVG_LIBDIR="\"/usr/local/lib"\" -Winline -Wall -Wshadow -O -fomit-frame-pointer -mpreferred-stack-boundary=2 -g -mpreferred-stack-boundary=2 -c `test -f 'vg_syscalls.c' || echo > './'`vg_syscalls.c > vg_syscalls.c: In function `vgPlain_perform_assumed_nonblocking_syscall': > vg_syscalls.c:2526: `SIOCOUTQ' undeclared (first use in this function) > vg_syscalls.c:2526: (Each undeclared identifier is reported only once > vg_syscalls.c:2526: for each function it appears in.) > make[1]: *** [vg_syscalls.o] Error 1 > > #ifdef'ing out that ioctl fixes the build. Where's SIOCOUTQ defined? > I couldn't find it anywhere in my RH9 distribution. Whoops, I accidentally made a partial commit. It's fixed now. SIOCOUTQ is defined in linux/sockios.h, on my machine (and hopefully yours...). N |