Issue #26857: The gethostbyaddr_r() workaround is no longer needed with

api-level >= 23. Patch by Xavier de Gaye.
This commit is contained in:
Stefan Krah 2016-05-22 17:35:34 +02:00
parent 70b49f60f4
commit 1f9eb879d5
2 changed files with 9 additions and 1 deletions

View file

@ -163,7 +163,11 @@ if_indextoname(index) -- return the corresponding interface name\n\
# include <sys/uio.h>
#endif
#if !defined(WITH_THREAD) || defined(__ANDROID__)
#if !defined(WITH_THREAD)
# undef HAVE_GETHOSTBYNAME_R
#endif
#if defined(__ANDROID__) && __ANDROID_API__ < 23
# undef HAVE_GETHOSTBYNAME_R
#endif