diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-07-07 17:25:41 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-07-07 17:25:41 +0000 |
commit | e4a3ac2c8cea919e4735d5cf1bc303037e43e66b (patch) | |
tree | e9f2f4ebf91127e327117ac1994ae060ac7540ec | |
parent | b02dc1bf6a6766a19b91ab038a716c0360efa1bd (diff) |
tests/examples/seek/Makefile.am: Fix out of tree build by adding all required CFLAGS.
Original commit message from CVS:
* tests/examples/seek/Makefile.am:
Fix out of tree build by adding all required CFLAGS.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/examples/seek/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2008-07-07 Sebastian Dröge <sebastian.droege@collabora.co.uk> + * tests/examples/seek/Makefile.am: + Fix out of tree build by adding all required CFLAGS. + +2008-07-07 Sebastian Dröge <sebastian.droege@collabora.co.uk> + * gst/playback/gstdecodebin.c: (add_raw_queue): And ref the pad before returning it again when linking to the queue failed. Otherwise we will unref the pad twice later and things break. diff --git a/tests/examples/seek/Makefile.am b/tests/examples/seek/Makefile.am index a2f2e417..d60046d7 100644 --- a/tests/examples/seek/Makefile.am +++ b/tests/examples/seek/Makefile.am @@ -8,4 +8,4 @@ noinst_PROGRAMS = $(examples) LDADD = $(GST_LIBS) $(GTK_LIBS) \ $(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la -AM_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -I$(top_builddir)/gst-libs +AM_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GTK_CFLAGS) -I$(top_builddir)/gst-libs |