mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
controllerized elements also need to link against controller-libs ;)
Original commit message from CVS: * configure.ac: * gst/sine/Makefile.am: * gst/volume/Makefile.am: controllerized elements also need to link against controller-libs ;)
This commit is contained in:
parent
bef1be2e90
commit
242ef1b05b
4 changed files with 19 additions and 3 deletions
|
@ -1,6 +1,11 @@
|
||||||
2005-08-29 Stefan Kost <ensonic@users.sf.net>
|
2005-08-29 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
reviewed by: <delete if not using a buddy>
|
* configure.ac:
|
||||||
|
* gst/sine/Makefile.am:
|
||||||
|
* gst/volume/Makefile.am:
|
||||||
|
controllerized elements also need to link against controller-libs ;)
|
||||||
|
|
||||||
|
2005-08-29 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* docs/libs/tmpl/gstcolorbalance.sgml:
|
* docs/libs/tmpl/gstcolorbalance.sgml:
|
||||||
* docs/libs/tmpl/gstgconf.sgml:
|
* docs/libs/tmpl/gstgconf.sgml:
|
||||||
|
|
10
configure.ac
10
configure.ac
|
@ -236,6 +236,16 @@ fi
|
||||||
|
|
||||||
AC_SUBST(GST_GDP_LIBS)
|
AC_SUBST(GST_GDP_LIBS)
|
||||||
|
|
||||||
|
dnl check for gstreamer-controller; uninstalled is selected preferentially
|
||||||
|
PKG_CHECK_MODULES(GST_CTRL, gstreamer-controller-$GST_MAJORMINOR >= $GST_REQ,
|
||||||
|
HAVE_GST_CTRL="yes", HAVE_GST_CTRL="no")
|
||||||
|
|
||||||
|
if test "x$HAVE_GST_CTRL" = "xno"; then
|
||||||
|
AC_MSG_ERROR(no GStreamer Controller Libs found)
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_SUBST(GST_CTRL_LIBS)
|
||||||
|
|
||||||
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
|
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
|
||||||
HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
|
HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,6 @@ plugin_LTLIBRARIES = libgstsinesrc.la
|
||||||
libgstsinesrc_la_SOURCES = gstsinesrc.c
|
libgstsinesrc_la_SOURCES = gstsinesrc.c
|
||||||
libgstsinesrc_la_CFLAGS = $(GST_CFLAGS)
|
libgstsinesrc_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstsinesrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsinesrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstsinesrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
libgstsinesrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GST_CTRL_LIBS)
|
||||||
|
|
||||||
noinst_HEADERS = gstsinesrc.h
|
noinst_HEADERS = gstsinesrc.h
|
||||||
|
|
|
@ -6,7 +6,8 @@ libgstvolume_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
libgstvolume_la_LIBADD = \
|
libgstvolume_la_LIBADD = \
|
||||||
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS) \
|
||||||
|
$(GST_CTRL_LIBS)
|
||||||
|
|
||||||
noinst_HEADERS = gstvolume.h
|
noinst_HEADERS = gstvolume.h
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue