From 6fd8ab7369fcd4e119b6ff624ccadb3bcc542411 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 28 Apr 2016 00:02:24 +0300 Subject: Add configure flag --enable-werror. If enabled it will report any warning as error. --- configure.ac | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 05d98f6..de7bf95 100644 --- a/configure.ac +++ b/configure.ac @@ -74,6 +74,26 @@ AC_ARG_ENABLE( ) AM_CONDITIONAL(ENABLE_GPROF, test x$enable_gprof = xyes) +AC_ARG_ENABLE( + [werror], + AC_HELP_STRING( + [--enable-werror], + [ + Fail build if warning present] + ] + ), + [ + enable_werror="$enableval" + case $enableval in + "no");; + "yes");; + *) AC_MSG_ERROR([[invalid argument --enable-werror=$disableval... stopping]]);; + esac + ], + [enable_werror="no"] +) +AM_CONDITIONAL(ENABLE_WERROR, test x$enable_werror = xyes) + AC_DEFUN([AC_CHECK_COMPILER_WFLAG], [ AC_MSG_CHECKING([whether $CC supports -W$1]) -- cgit v1.2.3-60-g2f50