change the script to automatically stop on warning if compiling with gcc.

svn path=/trunk/; revision=21422
This commit is contained in:
Sebastien Tandel 2007-04-13 23:10:13 +00:00
parent 7098b76ee0
commit d9e06450f4
1 changed files with 12 additions and 10 deletions

View File

@ -84,17 +84,19 @@ fi
rm -rf conftest*
AC_ARG_WITH(warnings-as-errors,
[ --with-warnings-as-errors Treat warnings as errors (if using gcc). [default=no]],
[
if test "x$GCC" != "x"; then
if test "x$withval" != "xno"; then
with_warnings_as_errors="yes"
fi
else
with_warnings_as_errors="no"
AC_HELP_STRING( [--without-warnings-as-errors],
[Don't treat warnings as errors (only for gcc). [default=yes]]),
[
without_warnings_as_errors="no"
if test "x$GCC" != "x" && test "x$withval" = "xno"; then
without_warnings_as_errors="yes"
fi
],)
AM_CONDITIONAL(HAVE_WARNINGS_AS_ERRORS, test "x$with_warnings_as_errors" = "xyes")
],
if test "x$GCC" != "x"; then
without_warnings_as_errors="no"
fi
)
AM_CONDITIONAL(HAVE_WARNINGS_AS_ERRORS, test "x$without_warnings_as_errors" = "xno")
#
# Add any platform-specific compiler flags needed.