Dan Fandrich's better ifdef for include fix

This commit is contained in:
Daniel Stenberg 2004-10-21 08:22:07 +00:00
parent cac269cf91
commit 2730842559
1 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,7 @@
#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) #if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
#else /* some kind of unix */ #else /* probably some kind of unix */
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
@ -51,7 +51,9 @@
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif
#ifdef HAVE_UTSNAME_H
#include <sys/utsname.h> #include <sys/utsname.h>
#endif
#ifdef HAVE_NETDB_H #ifdef HAVE_NETDB_H
#include <netdb.h> #include <netdb.h>
#endif #endif