]> granicus.if.org Git - curl/commitdiff
attempting to keep lines below 80 chars
authorYang Tse <yangsita@gmail.com>
Tue, 18 Nov 2008 20:13:55 +0000 (20:13 +0000)
committerYang Tse <yangsita@gmail.com>
Tue, 18 Nov 2008 20:13:55 +0000 (20:13 +0000)
ares/m4/cares-compilers.m4
m4/curl-compilers.m4

index 84f813bd16262ddc4469ea8074060be27ea77a4e..ba5815d1a5940660dff6b6ca18c38a700252521c 100644 (file)
@@ -16,7 +16,7 @@
 #***************************************************************************
 
 # File version for 'aclocal' use. Keep it a single number.
-# serial 45
+# serial 46
 
 
 dnl CARES_CHECK_COMPILER
@@ -875,6 +875,13 @@ AC_DEFUN([CARES_SET_COMPILER_WARNING_OPTS], [
             tmp_CFLAGS="$tmp_CFLAGS -Wdeclaration-after-statement"
           fi
           #
+          dnl Only gcc 4.3 or later
+          if test "$compiler_num" -ge "403"; then
+            tmp_CFLAGS="$tmp_CFLAGS -Wtype-limits -Wold-style-declaration"
+            tmp_CFLAGS="$tmp_CFLAGS -Wmissing-parameter-type -Wempty-body"
+            tmp_CFLAGS="$tmp_CFLAGS -Wclobbered -Wignored-qualifiers"
+          fi
+          #
         fi
         #
         dnl Do not issue warnings for code in system include paths.
index 85ba2a3e2fd18b026934dff186b6641983e28051..d832a6fd872d9fa803dab384deb182eb6425b550 100644 (file)
@@ -22,7 +22,7 @@
 #***************************************************************************
 
 # File version for 'aclocal' use. Keep it a single number.
-# serial 44
+# serial 46
 
 
 dnl CURL_CHECK_COMPILER
@@ -883,7 +883,9 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [
           #
           dnl Only gcc 4.3 or later
           if test "$compiler_num" -ge "403"; then
-            tmp_CFLAGS="$tmp_CFLAGS -Wtype-limits -Wold-style-declaration -Wmissing-parameter-type -Wempty-body -Wclobbered -Wignored-qualifiers"
+            tmp_CFLAGS="$tmp_CFLAGS -Wtype-limits -Wold-style-declaration"
+            tmp_CFLAGS="$tmp_CFLAGS -Wmissing-parameter-type -Wempty-body"
+            tmp_CFLAGS="$tmp_CFLAGS -Wclobbered -Wignored-qualifiers"
           fi
           #
         fi