From b61f4065f76f3868a6c597f37932de2e65e4fa97 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Thu, 21 Aug 2014 12:05:08 -0400 Subject: build: add support for Coverity scanning Thanks to the folks at Coverity for supporting Open Source projects such as this one. Signed-off-by: Paul Moore --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 8cdf4e5..59044e6 100644 --- a/configure.ac +++ b/configure.ac @@ -111,6 +111,12 @@ AC_DEFINE_UNQUOTED([ENABLE_PYTHON], [$(test "$enable_python" == yes && echo 1 || echo 0)], [Python bindings build flag.]) +dnl #### +dnl coverity checks +dnl #### +AC_CHECK_PROG(have_coverity, cov-build, "yes", "no") +AM_CONDITIONAL(COVERITY, test "$have_coverity" = yes) + dnl #### dnl version dependent files dnl #### -- cgit v1.2.1