summaryrefslogtreecommitdiffstats
path: root/neethi
diff options
context:
space:
mode:
authorGravatar nandika2012-08-01 15:12:23 +0000
committerGravatar nandika2012-08-01 15:12:23 +0000
commitdac0f3f53c97dd84ccdf7c6bd8a8a5cef898a271 (patch)
treedfe5b026575a779ab0833343f415caae2b29201f /neethi
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 'neethi')
-rw-r--r--neethi/configure.ac15
1 files changed, 14 insertions, 1 deletions
diff --git a/neethi/configure.ac b/neethi/configure.ac
index f6e1825..4f20d36 100644
--- a/neethi/configure.ac
+++ b/neethi/configure.ac
@@ -46,9 +46,22 @@ AC_CHECK_LIB(dl, dlopen)
CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
if test "$GCC" = "yes"; then
- CFLAGS="$CFLAGS -ansi -Wall -Werror -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