summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2013-10-02 09:40:43 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2013-11-01 08:23:47 +1000
commitea4bb70dd6ccf1fe180ad0d23ac840ba58c58642 (patch)
treec01526c1faeb51cf8ee0cadd6f743651f04708af
parent8a1cda43d874e0c83c1a5a7caff443a8aebfce1c (diff)
downloadlibevdev-ea4bb70dd6ccf1fe180ad0d23ac840ba58c58642.tar.gz
Disable gcov by default
Having libevdev build with profiling enabled by default leaves profiling files around. Profiling is something that only libevdev developers should need, so let them enable it case-by-case. https://bugzilla.redhat.com/show_bug.cgi?id=1012180 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Benjamin Tissoires <benjamin.tissoires@gmail.com> (cherry picked from commit c8b5f6a08f2e0c5043293508fcf8ad0440b9d4ca)
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b0ce185..81ccd0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -79,9 +79,9 @@ AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
AC_MSG_CHECKING([whether to build with gcov])
AC_ARG_ENABLE([gcov],
[AS_HELP_STRING([--enable-gcov],
- [Whether to enable coverage testing (default:enabled)])],
+ [Whether to enable coverage testing (default:disabled)])],
[],
- [enable_gcov=yes],
+ [enable_gcov=no],
)
AS_IF([test "x$enable_gcov" != "xno"],
[