Peter O'Gorman pointed out (and fixed) that the non-blocking check in

configure made libcurl use blocking sockets on AIX 4 and 5, while that
wasn't the intention.
This commit is contained in:
Daniel Stenberg
2007-07-30 22:53:18 +00:00
parent 16710a1c9b
commit 5b1bbffdff
2 changed files with 6 additions and 1 deletions

View File

@@ -1107,7 +1107,7 @@ AC_DEFUN([CURL_CHECK_NONBLOCKING_SOCKET],
# define PLATFORM_SUNOS4
# endif
#endif
#if (defined(_AIX) || defined(__xlC__)) && !defined(_AIX4)
#if (defined(_AIX) || defined(__xlC__)) && !defined(_AIX41)
# define PLATFORM_AIX_V3
#endif