summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--acinclude.m432
-rw-r--r--configure.in3
2 files changed, 35 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 1257c9e..f488b00 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -318,6 +318,38 @@ AC_DEFUN([AC_ZMQ_CHECK_ENABLE_DEBUG], [{
}])
dnl ##############################################################################
+dnl # AC_ZMQ_WITH_GCOV([action-if-found], [action-if-not-found]) #
+dnl # Check whether to build with code coverage #
+dnl ##############################################################################
+AC_DEFUN([AC_ZMQ_WITH_GCOV], [{
+ # Require compiler specifics
+ AC_REQUIRE([AC_ZMQ_CHECK_COMPILERS])
+
+ AC_ARG_WITH(gcov, [AS_HELP_STRING([--with-gcov=yes/no],
+ [With GCC Code Coverage reporting.])],
+ [ZMQ_GCOV="$withval"])
+
+ AC_MSG_CHECKING(whether to enable code coverage)
+
+ if test "x$GXX" != "xyes"; then
+ AC_MSG_ERROR([--with-gcov=yes works only with GCC])
+ fi
+
+ CFLAGS="-g -O0 -fprofile-arcs -ftest-coverage"
+ if test "x${ZMQ_ORIG_CPPFLAGS}" != "xnone"; then
+ CFLAGS="${CFLAGS} ${ZMQ_ORIG_CFLAGS}"
+ fi
+
+ CPPFLAGS="-g -O0 -fprofile-arcs -ftest-coverage"
+ if test "x${ZMQ_ORIG_CPPFLAGS}" != "xnone"; then
+ CPPFLAGS="${CPPFLAGS} ${ZMQ_ORIG_CPPFLAGS}"
+ fi
+
+ AS_IF([test "x$ZMQ_GCOV" = "xyes"],
+ [AC_MSG_RESULT(yes) ; $1], [AC_MSG_RESULT(no) ; $2])
+}])
+
+dnl ##############################################################################
dnl # AC_ZMQ_CHECK_WITH_FLAG([flags], [macro]) #
dnl # Runs a normal autoconf check with compiler flags #
dnl ##############################################################################
diff --git a/configure.in b/configure.in
index bd0e848..211dda3 100644
--- a/configure.in
+++ b/configure.in
@@ -57,6 +57,9 @@ AC_PROG_LIBTOOL
# Check whether to build a with debug symbols
AC_ZMQ_CHECK_ENABLE_DEBUG
+# Check wheter to enable code coverage
+AC_ZMQ_WITH_GCOV
+
# Checks for libraries.
AC_CHECK_LIB([pthread], [pthread_create])