diff options
author | Yang Tse <yangsita@gmail.com> | 2007-10-18 15:11:51 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-10-18 15:11:51 +0000 |
commit | e0dc7d6fc8eae90035259dac8520faef9a9cd46b (patch) | |
tree | 4f9353d7df354483c5746e21267355b6325695ff | |
parent | 8f5909b6648ed2833418827241805fa4eaa609f2 (diff) |
Sync PLATFORM_AIX_V3 detection and CURL_CC_DEBUG_OPTS()
icc warning level with libcurl's
-rw-r--r-- | ares/acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ares/acinclude.m4 b/ares/acinclude.m4 index 7ba0fc60f..544559294 100644 --- a/ares/acinclude.m4 +++ b/ares/acinclude.m4 @@ -1085,7 +1085,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 @@ -1369,7 +1369,7 @@ AC_DEFUN([CURL_CC_DEBUG_OPTS], dnl only if the compiler is newer than 2.95 since we got lots of dnl "`_POSIX_C_SOURCE' is not defined" in system headers with dnl gcc 2.95.4 on FreeBSD 4.9! - WARN="$WARN -Wundef -Wno-long-long -Wsign-compare" + WARN="$WARN -Wundef -Wno-long-long -Wsign-compare -Wshadow -Wno-multichar" fi if test "$gccnum" -ge "296"; then |