Check for __ANDROID__ in addition to ANDROID macro.

pull/8/merge
Guenter Knauf 13 years ago
parent 995fa144d9
commit 7d3f341156
  1. 2
      ares.h
  2. 2
      ares_setup.h

@ -38,7 +38,7 @@
require it! */
#if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \
defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \
defined(__ANDROID__)
defined(ANDROID) || defined(__ANDROID__)
#include <sys/select.h>
#endif
#if (defined(NETWARE) && !defined(__NOVELL_LIBC__))

@ -179,7 +179,7 @@
* Android does have the arpa/nameser.h header which is detected by configure
* but it appears to be empty with recent NDK r7b / r7c, so we undefine here.
*/
#if defined(__ANDROID__) && defined(HAVE_ARPA_NAMESER_H)
#if (defined(ANDROID) || defined(__ANDROID__)) && defined(HAVE_ARPA_NAMESER_H)
# undef HAVE_ARPA_NAMESER_H
#endif

Loading…
Cancel
Save