diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-15 22:54:25 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-15 22:54:25 +0000 |
commit | 9bb1854398738ce1779363ec01a18daa26278772 (patch) | |
tree | a85b77e499970e9b31f4348ef3ea1bcd5e351a0c /ares/m4 | |
parent | f7400212fcccbb5817f71f4b7de0176ef054abf0 (diff) |
Set HP-UX compiler warning level back to the one that exposes
the socklen_t issue on this platform.
Diffstat (limited to 'ares/m4')
-rw-r--r-- | ares/m4/cares-compilers.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/m4/cares-compilers.m4 b/ares/m4/cares-compilers.m4 index ba5815d1a..9d3db48a3 100644 --- a/ares/m4/cares-compilers.m4 +++ b/ares/m4/cares-compilers.m4 @@ -16,7 +16,7 @@ #*************************************************************************** # File version for 'aclocal' use. Keep it a single number. -# serial 46 +# serial 47 dnl CARES_CHECK_COMPILER @@ -908,11 +908,11 @@ AC_DEFUN([CARES_SET_COMPILER_WARNING_OPTS], [ # if test "$want_warnings" = "yes"; then dnl Issue all warnings - dnl tmp_CFLAGS="$tmp_CFLAGS +w1" + tmp_CFLAGS="$tmp_CFLAGS +w1" dnl Due to the HP-UX socklen_t issue it is insane to use the +w1 dnl warning level. Until the issue is somehow fixed we will just dnl use the +w2 warning level. - tmp_CFLAGS="$tmp_CFLAGS +w2" + dnl tmp_CFLAGS="$tmp_CFLAGS +w2" fi ;; # |