diff options
Diffstat (limited to 'm4/curl-compilers.m4')
-rw-r--r-- | m4/curl-compilers.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4 index 60e0c98f7..0be683e04 100644 --- a/m4/curl-compilers.m4 +++ b/m4/curl-compilers.m4 @@ -706,7 +706,11 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [ # if test "$want_warnings" = "yes"; then dnl Issue all warnings - tmp_CFLAGS="$tmp_CFLAGS +w1" + dnl 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" fi ;; # |