Skip to content

Commit

Permalink
configure: Added --enable-static-checker parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Sep 8, 2016
1 parent cd9cf45 commit f2ed47f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure.ac
Expand Up @@ -31,6 +31,12 @@ AS_HELP_STRING([--enable-devel-checks], [Enable some extra expensive checks for
want_devel_checks=yes
fi)

AC_ARG_ENABLE(static-checker,
AS_HELP_STRING([--enable-static-checker], [Enable code to be used when building with static code analyzer]),
if test x$enableval = xyes; then
AC_DEFINE(STATIC_CHECKER,, [Building with static code analyzer])
fi)

AC_ARG_ENABLE(asserts,
AS_HELP_STRING([--enable-asserts], [Enable asserts (default)]),
if test x$enableval = xno; then
Expand Down

0 comments on commit f2ed47f

Please sign in to comment.