diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2012-04-05 12:44:30 +0200 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2012-04-05 12:44:30 +0200 |
commit | d538aa44668e089474d8660ee98635e4146e8d0f (patch) | |
tree | d6e45e2d66fe4940aff47c46ad743d3f79f67597 /m4 | |
parent | 4a445398a20768db826fbc245f9b2293176b8d88 (diff) | |
parent | 696375c27b39b8f352bf967800e260b4ce73702e (diff) | |
download | libayatana-indicator-d538aa44668e089474d8660ee98635e4146e8d0f.tar.gz libayatana-indicator-d538aa44668e089474d8660ee98635e4146e8d0f.tar.bz2 libayatana-indicator-d538aa44668e089474d8660ee98635e4146e8d0f.zip |
releasing version 0.4.95-0ubuntu1
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gcov.m4 | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -5,11 +5,10 @@ # * gcovr # # Sets ac_cv_check_gcov to yes if tooling is present -# and reports the executables to the variables LCOV, GCOVR and GENHTML. +# and reports the executables to the variables LCOV, GCOVR and GENHTML. AC_DEFUN([AC_TDD_GCOV], -[AC_CACHE_CHECK([whether code coverage tools are available], ac_cv_check_gcov, [ -AC_ARG_ENABLE(gcov, + AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov], [enable coverage testing with gcov]), [use_gcov=$enableval], [use_gcov=no]) @@ -34,7 +33,6 @@ AC_ARG_ENABLE(gcov, lcov_version_list="1.6 1.7 1.8 1.9" AC_CHECK_PROG(LCOV, lcov, lcov) AC_CHECK_PROG(GENHTML, genhtml, genhtml) - AC_CHECK_PROG(GCOVR, gcovr, gcovr) if test "$LCOV"; then AC_CACHE_CHECK([for lcov version], glib_cv_lcov_version, [ @@ -63,10 +61,8 @@ AC_ARG_ENABLE(gcov, AC_MSG_ERROR([Could not find genhtml from the lcov package]) fi - if test -z "$GCOVR"; then - AC_MSG_ERROR([Could not find gcovr; easy_install (or pip) gcovr]) - fi - + ac_cv_check_gcov=yes + ac_cv_check_lcov=yes # Remove all optimization flags from CFLAGS changequote({,}) @@ -78,5 +74,13 @@ AC_ARG_ENABLE(gcov, COVERAGE_CXXFLAGS="-O0 -fprofile-arcs -ftest-coverage" COVERAGE_LDFLAGS="-lgcov" + # Check availability of gcovr + AC_CHECK_PROG(GCOVR, gcovr, gcovr) + if test -z "$GCOVR"; then + ac_cv_check_gcovr=no + else + ac_cv_check_gcovr=yes + fi + fi -])]) # AC_TDD_GCOV +]) # AC_TDD_GCOV |