Changes for PellesC for Win32. It needs <unistd.h> for 'ssize_t'. Hence the

rearrangement in ares_process.c.
This commit is contained in:
Gisle Vanem 2005-12-20 20:48:38 +00:00
parent df2b1251a0
commit f1f32477e3
3 changed files with 15 additions and 12 deletions

View File

@ -30,6 +30,8 @@
#ifdef HAVE_ARPA_NAMESER_COMPAT_H
#include <arpa/nameser_compat.h>
#endif
#endif /* WIN32 && !WATT32 */
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
@ -39,7 +41,6 @@
#ifdef NETWARE
#include <sys/filio.h>
#endif
#endif
#include <string.h>
#include <stdlib.h>

View File

@ -30,7 +30,8 @@
#endif
/* Define if you have the <unistd.h> header file. */
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__)
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__) || \
defined(__POCC__)
#define HAVE_UNISTD_H 1
#endif

View File

@ -69,7 +69,8 @@
#ifndef HAVE_CONFIG_H
#if defined(__DJGPP__) || (defined(__WATCOMC__) && (__WATCOMC__ >= 1240))
#if defined(__DJGPP__) || (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || \
defined(__POCC__)
#else
#define ssize_t int
#endif