Add another AIX test

This commit is contained in:
Andy Cedilnik 2003-01-10 15:54:23 -05:00
parent 3aa781ab6d
commit 9e287a2556
2 changed files with 22 additions and 0 deletions

View File

@ -370,3 +370,24 @@ int main()
return 0;
}
#endif
#ifdef HAVE_GETADDRINFO
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
void main(void) {
struct addrinfo hints, *ai;
int error;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
error = getaddrinfo("127.0.0.1", "8080", &hints, &ai);
if (error) {
exit(1);
}
else {
exit(0);
}
}
#endif

View File

@ -265,6 +265,7 @@ FOREACH(CURL_TEST
RETSIGTYPE_TEST
HAVE_INET_NTOA_R_DECL
HAVE_INET_NTOA_R_DECL_REENTRANT
HAVE_GETADDRINFO
)
CURL_INTERNAL_TEST(${CURL_TEST})
ENDFOREACH(CURL_TEST)