- Don't use getaddrinfo on AIX

This commit is contained in:
Damien Miller 2000-01-20 22:38:27 +11:00
Родитель 7d80e3484b
Коммит eca71f84cb
4 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,6 @@
20000120
- Don't use getaddrinfo on AIX
20000119
- SCO compile fixes from Gary E. Miller <gem@rellim.com>
- Compile fix from Darren_Hall@progressive.com

Просмотреть файл

@ -138,6 +138,9 @@
/* Use IPv4 for connection by default, IPv6 can still if explicity asked */
#undef IPV4_DEFAULT
/* getaddrinfo is broken (if present) */
#undef BROKEN_GETADDRINFO
@BOTTOM@
/* ******************* Shouldn't need to edit below this line ************** */

Просмотреть файл

@ -55,6 +55,7 @@ dnl Check for some target-specific stuff
case "$host" in
*-*-aix*)
AFS_LIBS="-lld"
AC_DEFINE(BROKEN_GETADDRINFO)
;;
*-*-hpux10*)
if test -z "$GCC"; then

Просмотреть файл

@ -247,4 +247,8 @@ typedef unsigned int size_t;
# define PAM_STRERROR(a,b) pam_strerror((a),(b))
#endif
#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
# undef HAVE_GETADDRINFO
#endif /* defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO) */
#endif /* _DEFINES_H */