diff options
author | Jim Jagielski <jim@apache.org> | 2011-01-21 16:27:41 +0000 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2011-01-21 16:27:41 +0000 |
commit | b7b9bca439cb39ed33272b347673e67dbdec1234 (patch) | |
tree | 3e3fa0dec7a8ed5ab88628aa7033a4b6cca6ee9a /configure.in | |
parent | 47db013514e04c90afc4366589d29763e8745868 (diff) | |
download | httpd-b7b9bca439cb39ed33272b347673e67dbdec1234.tar.gz |
Mkae gcc no longer silent when doing arith on void*...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1061883 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 6df1629f1a..bdb6b7c265 100644 --- a/configure.in +++ b/configure.in @@ -529,7 +529,7 @@ AC_ARG_ENABLE(maintainer-mode,APACHE_HELP_STRING(--enable-maintainer-mode,Turn o [ APR_ADDTO(CPPFLAGS, -DAP_DEBUG) if test "$GCC" = "yes"; then - APR_ADDTO(CFLAGS,[-Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations]) + APR_ADDTO(CFLAGS,[-Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -Wpointer-arith]) AC_CACHE_CHECK([whether gcc accepts -Wdeclaration-after-statement], [ap_cv_cc_Wdas], [ save_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wdeclaration-after-statement" |