mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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.
This commit is contained in:
parent
22aa87e98f
commit
c23c706dce
1 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue