On Thu, 16 Aug 2001, Michael Rodrigues wrote:
Try writing a small test app that uses socket.h. It doesn't have to do anything, maybe just call a single function.
I don't know much about programming :-( , still on the learning curve otherwise I'd have tried that suggestion too.
Your app would be something like this:
#include <sys/socket.h>
main() { return 0; }
If it can find socket.h, it will compile, else it won't.
Philip