g++ -DNO_WRITE_MNG -DUSE_ALPHA_TABLE -D_REENTRANT
-I/usr/include/SDL -c -o sourc
e/engine/unix/unix_network.o
source/engine/unix/unix_network.cpp
source/engine/unix/unix_network.cpp: In function `bool
IsConnected(NSOCKETimp*)' :
source/engine/unix/unix_network.cpp:126: error: cannot
convert `size_t*' to `soc klen_t*' for argument `3' to
`int accept(int, sockaddr*, socklen_t*)'
scons: *** [source/engine/unix/unix_network.o] Error 1
scons: building terminated because of errors.
get that error when I run scons. I've tried everything
I can think of and on differn't computers. Build
enviorment is Linux.
Logged In: YES
user_id=1206940
C++ compilers are fussy about types. Both size_t* and
socklen_t* are pointers, so they aren't that different.
Trying type-casting, i.e. put (socklen_t *) in front of the
3rd argument of the function call on that line.