changes to support alternative header locations

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34290 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-12-15 09:42:39 +00:00
parent 1c713d9ae3
commit ee3f0b14a0
25 changed files with 19211 additions and 4285 deletions

View file

@ -59,7 +59,13 @@
#endif /* !__MINGW__ */
#include <string.h> /* for strchr() */
#include <ctype.h> /* for strchr() */
#include <fcntl.h>
#if defined(HAVE_SYS_FCNTL_H)
# include <sys/fcntl.h>
#elif defined(HAVE_FCNTL_H)
# include <fcntl.h>
#endif
#ifdef __MINGW__
#include <winsock2.h>
#include <wininet.h>
@ -70,7 +76,11 @@
#include <sys/resource.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/file.h>
#if defined(HAVE_SYS_FILE_H)
# include <sys/file.h>
#endif
/*
* Stuff for setting the sockets into non-blocking mode.
*/