From: Sebastian Dröge Date: Sat, 18 Dec 2010 19:47:00 +0000 (+0100) Subject: examples: Fix encodebin example CFLAGS and LDFLAGS X-Git-Tag: 1.19.3~511^2~6555^2~1308 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c23c706dce96554eef20062554403fc7aac65b02;p=platform%2Fupstream%2Fgstreamer.git examples: Fix encodebin example CFLAGS and LDFLAGS Previously it would only succeed to link if a new enough libgstpbutils-0.10 was installed in the default library search path. --- diff --git a/tests/examples/encoding/Makefile.am b/tests/examples/encoding/Makefile.am index 3e95e8a..2bcc902 100644 --- a/tests/examples/encoding/Makefile.am +++ b/tests/examples/encoding/Makefile.am @@ -5,7 +5,8 @@ EXTRA_DIST = gstcapslist.h noinst_PROGRAMS = $(examples) -LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la\ - -lgstpbutils-@GST_MAJORMINOR@ +LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_MAJORMINOR@.la \ $(GST_LIBS) -AM_CFLAGS = -I$(top_builddir)/gst-libs $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) +AM_CFLAGS = -I$(top_builddir)/gst-libs \ + $(GST_PLUGINS_BASE_CFLAGS) \ + $(GST_CFLAGS)