mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
add gcov stuff
Original commit message from CVS: * Makefile.am: * configure.ac: * gst/Makefile.am: add gcov stuff
This commit is contained in:
parent
fc67bb7842
commit
04387f3302
4 changed files with 19 additions and 15 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-07-03 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* Makefile.am:
|
||||
* configure.ac:
|
||||
* gst/Makefile.am:
|
||||
add gcov stuff
|
||||
|
||||
2006-07-03 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/gstmodule.c: (init_gst):
|
||||
|
|
|
@ -38,3 +38,5 @@ check-valgrind:
|
|||
|
||||
check-torture:
|
||||
@true
|
||||
|
||||
include $(top_srcdir)/common/coverage/lcov.mak
|
||||
|
|
21
configure.ac
21
configure.ac
|
@ -40,10 +40,11 @@ AC_SUBST(GTK_REQ, 2.6.0)
|
|||
AC_SUBST(GST_REQ, 0.10.2)
|
||||
AC_SUBST(GSTPB_REQ, 0.10.0.2)
|
||||
|
||||
|
||||
AC_DISABLE_STATIC
|
||||
AC_PROG_LIBTOOL
|
||||
|
||||
GST_ARG_GCOV
|
||||
|
||||
dnl check for python
|
||||
dnl AM_PATH_PYTHON(2.2)
|
||||
AM_PATH_PYTHON
|
||||
|
@ -210,19 +211,13 @@ dnl PYGTK_CODEGEN="$PYTHON \$(top_srcdir)/codegen/codegen.py"
|
|||
AC_SUBST(PYGTK_CODEGEN)
|
||||
AC_MSG_RESULT($PYGTK_CODEGEN)
|
||||
|
||||
dnl decide on error flags
|
||||
dnl if we support -Wall, set it unconditionally
|
||||
AS_COMPILER_FLAG(-Wall,
|
||||
PYGST_ERROR_CFLAGS="-Wall",
|
||||
PYGST_ERROR_CFLAGS="")
|
||||
dnl if we're in nano >= 1, add -Werror if supported
|
||||
if test "x$GST_CVS" = "xyes"
|
||||
then
|
||||
AS_COMPILER_FLAG(-Werror, PYGST_ERROR_CFLAGS="$PYGST_ERROR_CFLAGS -Werror")
|
||||
fi
|
||||
dnl define an ERROR_CFLAGS Makefile variable
|
||||
GST_SET_ERROR_CFLAGS($GST_CVS)
|
||||
|
||||
PYGST_CFLAGS="$PYGST_ERROR_CFLAGS"
|
||||
AC_SUBST(PYGST_CFLAGS)
|
||||
GST_OPTION_CFLAGS="\$(ERROR_CFLAGS) \$(GCOV_CFLAGS)"
|
||||
AC_SUBST(GST_OPTION_CFLAGS)
|
||||
GST_OPTION_LIBS="\$(GCOV_LIBS)"
|
||||
AC_SUBST(GST_OPTION_LIBS)
|
||||
|
||||
dnl full installation path
|
||||
AS_AC_EXPAND(PYTHONDIR, $pythondir)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
common_cflags = $(PYGTK_CFLAGS) $(GST_CFLAGS) $(PYGST_CFLAGS) -fno-strict-aliasing
|
||||
common_libadd = $(GST_LIBS)
|
||||
common_cflags = $(PYGTK_CFLAGS) $(GST_CFLAGS) $(GST_OPTION_CFLAGS) -fno-strict-aliasing
|
||||
common_libadd = $(GST_LIBS) $(GST_OPTION_LIBS)
|
||||
common_ldflags = -module -avoid-version
|
||||
|
||||
pkgpyexecdir = $(pyexecdir)/gst-$(GST_MAJORMINOR)/gst
|
||||
|
|
Loading…
Reference in a new issue