mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
gst/: fix broken build of controllerized plugins
Original commit message from CVS: * gst/audiotestsrc/Makefile.am: * gst/sine/Makefile.am: * gst/volume/Makefile.am: fix broken build of controllerized plugins
This commit is contained in:
parent
d022c250a1
commit
456bd88950
4 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-10-17 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/audiotestsrc/Makefile.am:
|
||||
* gst/sine/Makefile.am:
|
||||
* gst/volume/Makefile.am:
|
||||
fix broken build of controllerized plugins
|
||||
|
||||
2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
|
||||
|
||||
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
plugin_LTLIBRARIES = libgstaudiotestsrc.la
|
||||
|
||||
libgstaudiotestsrc_la_SOURCES = gstaudiotestsrc.c
|
||||
libgstaudiotestsrc_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstaudiotestsrc_la_CFLAGS = $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS)
|
||||
libgstaudiotestsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiotestsrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GST_CTRL_LIBS)
|
||||
libgstaudiotestsrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GST_CONTROLLER_LIBS)
|
||||
|
||||
noinst_HEADERS = gstaudiotestsrc.h
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
plugin_LTLIBRARIES = libgstsinesrc.la
|
||||
|
||||
libgstsinesrc_la_SOURCES = gstsinesrc.c
|
||||
libgstsinesrc_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstsinesrc_la_CFLAGS = $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS)
|
||||
libgstsinesrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsinesrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GST_CTRL_LIBS)
|
||||
libgstsinesrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GST_CONTROLLER_LIBS)
|
||||
|
||||
noinst_HEADERS = gstsinesrc.h
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
plugin_LTLIBRARIES = libgstvolume.la
|
||||
|
||||
libgstvolume_la_SOURCES = gstvolume.c
|
||||
libgstvolume_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstvolume_la_CFLAGS = $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS)
|
||||
libgstvolume_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvolume_la_LIBADD = \
|
||||
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
||||
$(GST_BASE_LIBS) \
|
||||
$(GST_LIBS) \
|
||||
$(GST_CTRL_LIBS)
|
||||
$(GST_CONTROLLER_LIBS)
|
||||
|
||||
noinst_HEADERS = gstvolume.h
|
||||
|
||||
|
|
Loading…
Reference in a new issue