Author: Martial Rioux
Email: [EMAIL PROTECTED]
Message:
Hi,

to correct problem you must add preprocessor configuration in 
spell.c and spelld.c.

replace 
#include <sys/socket.h>

by
#ifdef __linux__
#include <linux/socket.h> 
#else
#include <sys/socket.h>
#endif

or you can define MSG_WAITALL with 0x100 value. 
#ifdef __linux__ /* or other os */
#define MSG_WAITALL     0x100   /* Wait for a full request */
#endif

good luck

Reply: <http://search.mnogo.ru/board/message.php?id=1651>

___________________________________________
If you want to unsubscribe send "unsubscribe general"
to [EMAIL PROTECTED]

Reply via email to