diff options
author | Yang Tse <yangsita@gmail.com> | 2008-10-14 04:59:22 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-10-14 04:59:22 +0000 |
commit | bf8d642607f49355d22e47eca09a79485a3fd1a9 (patch) | |
tree | 596781f540c1f83de8fcf77e10eb178d33102e12 | |
parent | 1fab40bb69669efcb52d03fd688289551727ad7a (diff) |
fix syntax error
-rw-r--r-- | ares/m4/cares-compilers.m4 | 2 | ||||
-rw-r--r-- | m4/curl-compilers.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ares/m4/cares-compilers.m4 b/ares/m4/cares-compilers.m4 index 5d7f0e5eb..a54f33688 100644 --- a/ares/m4/cares-compilers.m4 +++ b/ares/m4/cares-compilers.m4 @@ -940,7 +940,7 @@ AC_DEFUN([CARES_SET_COMPILER_WARNING_OPTS], [ # if test "$want_warnings" = "yes"; then dnl Issue all warnings - dnl tmp_CFLAGS="$tmp_CFLAGS -Wall -Wextra -Wpadded" + tmp_CFLAGS="$tmp_CFLAGS -Wall -Wextra -Wpadded" fi ;; # diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4 index 03d35cdf4..52f30b122 100644 --- a/m4/curl-compilers.m4 +++ b/m4/curl-compilers.m4 @@ -946,7 +946,7 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [ # if test "$want_warnings" = "yes"; then dnl Issue all warnings - dnl tmp_CFLAGS="$tmp_CFLAGS -Wall -Wextra -Wpadded" + tmp_CFLAGS="$tmp_CFLAGS -Wall -Wextra -Wpadded" fi ;; # |