summaryrefslogtreecommitdiff
path: root/m4/curl-compilers.m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-04-15 22:54:25 +0000
committerYang Tse <yangsita@gmail.com>2009-04-15 22:54:25 +0000
commit9bb1854398738ce1779363ec01a18daa26278772 (patch)
treea85b77e499970e9b31f4348ef3ea1bcd5e351a0c /m4/curl-compilers.m4
parentf7400212fcccbb5817f71f4b7de0176ef054abf0 (diff)
downloadcurl-9bb1854398738ce1779363ec01a18daa26278772.tar.gz
Set HP-UX compiler warning level back to the one that exposes
the socklen_t issue on this platform.
Diffstat (limited to 'm4/curl-compilers.m4')
-rw-r--r--m4/curl-compilers.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4
index d832a6fd8..ffd906dbe 100644
--- a/m4/curl-compilers.m4
+++ b/m4/curl-compilers.m4
@@ -5,7 +5,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -22,7 +22,7 @@
#***************************************************************************
# File version for 'aclocal' use. Keep it a single number.
-# serial 46
+# serial 47
dnl CURL_CHECK_COMPILER
@@ -914,11 +914,11 @@ AC_DEFUN([CURL_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
;;
#