From: Thomas Vander Stichele Date: Sun, 2 Jul 2006 21:48:51 +0000 (+0000) Subject: Makefile.am: include lcov.mak X-Git-Tag: 1.19.3~511^2~11774 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da2fd7f3a6a82b81cddea9329a6cc0196551c795;p=platform%2Fupstream%2Fgstreamer.git Makefile.am: include lcov.mak Original commit message from CVS: * Makefile.am: include lcov.mak * configure.ac: add GCOV_LIBS to GST_LIBS --- diff --git a/ChangeLog b/ChangeLog index 4820dd0..6d66a84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-07-02 Thomas Vander Stichele + + * Makefile.am: + include lcov.mak + * configure.ac: + add GCOV_LIBS to GST_LIBS + 2006-07-02 Tim-Philipp Müller Patch by: Michael Sheldon diff --git a/Makefile.am b/Makefile.am index b3b507b..50856a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -59,3 +59,5 @@ WIN32_COPY = \ win32-update: for f in $(WIN32_COPY); do cp $$f win32/common;done + +include $(top_srcdir)/common/coverage/lcov.mak diff --git a/common b/common index 2cd1cf8..f411695 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 2cd1cf860cd15e61827c0f5f1db96f877344c722 +Subproject commit f411695f3e009b4d348a8fa2dd32c0171f1ff683 diff --git a/configure.ac b/configure.ac index 0ac0621..2447374 100644 --- a/configure.ac +++ b/configure.ac @@ -545,6 +545,8 @@ dnl also add builddir include for enumtypes and marshal dnl add GST_OPTION_CFLAGS, but overridable GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(GST_OPTION_CFLAGS)" AC_SUBST(GST_CFLAGS) +dnl add GCOV libs because libtool strips -fprofile-arcs -ftest-coverage +GST_LIBS="$GST_LIBS \$(GCOV_LIBS)" AC_SUBST(GST_LIBS) dnl LDFLAGS really should only contain flags, not libs - they get added before