summaryrefslogtreecommitdiffstats
path: root/axiom
diff options
context:
space:
mode:
authorGravatar nandika2012-08-01 15:12:23 +0000
committerGravatar nandika2012-08-01 15:12:23 +0000
commitdac0f3f53c97dd84ccdf7c6bd8a8a5cef898a271 (patch)
treedfe5b026575a779ab0833343f415caae2b29201f /axiom
parentd4040914ad947dee648c611663560f2f0f3a2dfa (diff)
downloadaxis2c-dac0f3f53c97dd84ccdf7c6bd8a8a5cef898a271.tar.gz
axis2c-dac0f3f53c97dd84ccdf7c6bd8a8a5cef898a271.tar.bz2
patch applied for AXIS2C-1603
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1368044 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'axiom')
-rw-r--r--axiom/configure.ac15
1 files changed, 14 insertions, 1 deletions
diff --git a/axiom/configure.ac b/axiom/configure.ac
index 09ba267..d3cdd1f 100644
--- a/axiom/configure.ac
+++ b/axiom/configure.ac
@@ -61,9 +61,22 @@ AC_CHECK_LIB(z, inflate)
CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
if test "$GCC" = "yes"; then
- CFLAGS="$CFLAGS -ansi -Werror -Wall -Wno-implicit-function-declaration "
+ CFLAGS="$CFLAGS -ansi -Wall -Wno-implicit-function-declaration "
fi
+AC_MSG_CHECKING(whether to set -Werror)
+AC_ARG_ENABLE(werror, [ --disable-werror do not treat warnings as errors during build],
+[ case "${enableval}" in
+ no)
+ AC_MSG_RESULT(no)
+ ;;
+ *)
+ AC_MSG_RESULT(yes)
+ CFLAGS="$CFLAGS -Werror"
+ ;;
+ esac ],
+)
+
dnl Checks for header files.
AC_HEADER_STDC