From: Daniel Stenberg Date: Mon, 30 Jul 2007 22:53:18 +0000 (+0000) Subject: Peter O'Gorman pointed out (and fixed) that the non-blocking check in X-Git-Tag: curl-7_17_0-preldapfix~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b1bbffdffcd05c1b088a49bf7f2ba5a11a4bb41;p=thirdparty%2Fcurl.git 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. --- diff --git a/CHANGES b/CHANGES index e48e9b5919..f99ce348a9 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,11 @@ Changelog +Daniel S (31 July 2007) +- 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. + Daniel S (29 July 2007) - Jayesh A Shah filed bug report #1759542 (http://curl.haxx.se/bug/view.cgi?id=1759542) identifying a rather serious diff --git a/acinclude.m4 b/acinclude.m4 index bf0c4b42dd..53c8b1e3bb 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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