Hi Osvaldo,
What platform are you attempting to compile WINE on?
> socket.c:1318: storage size of ifInfo' isn't known
This error (and the others) is happening because the compiler
can't find the definition for 'struct ifreq'. This should
be in net/if.h which is included like this:
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
So, either your net/if.h doesn't have this declaration, or configure
didn't find net/if.h on your machine. Could you see if struct
ifreq is defined somewhere else on your machine? (cd /usr/include,
grep -r "struct ifreq" * | more) If it is defined in a seperate place,
I can expand the #ifdef to include your file instead.
Thanks,
-James
--
James Hatheway
Software Designer - Macadamian Technologies, Inc.
[EMAIL PROTECTED] ~ http://www.macadamian.com
"Nothing is a problem once you debug the code."