[gst-cvs] gst-plugins-base: Fixing Makefiles
Thiago Sousa Santos
thiagoss at kemper.freedesktop.org
Tue Sep 28 05:00:46 PDT 2010
Module: gst-plugins-base
Branch: master
Commit: 5dadd667faf37a934ea1b4d508d0f3a2c694b245
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-base/commit/?id=5dadd667faf37a934ea1b4d508d0f3a2c694b245
Author: Thiago Santos <thiago.sousa.santos at collabora.co.uk>
Date: Tue Sep 28 08:46:25 2010 -0300
Fixing Makefiles
Adds some missing lines to makefiles
---
tests/examples/app/Makefile.am | 10 +++++-----
tools/Makefile.am | 4 +++-
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/tests/examples/app/Makefile.am b/tests/examples/app/Makefile.am
index c0651ed..4f17ad7 100644
--- a/tests/examples/app/Makefile.am
+++ b/tests/examples/app/Makefile.am
@@ -10,23 +10,23 @@ appsrc_ex_LDADD = \
appsrc_stream_SOURCES = appsrc-stream.c
appsrc_stream_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
-appsrc_stream_LDADD = $(GST_LIBS)
+appsrc_stream_LDADD = $(GST_BASE_LIBS) $(GST_LIBS)
appsrc_stream2_SOURCES = appsrc-stream2.c
appsrc_stream2_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
-appsrc_stream2_LDADD = $(GST_LIBS)
+appsrc_stream2_LDADD = $(GST_BASE_LIBS) $(GST_LIBS)
appsrc_ra_SOURCES = appsrc-ra.c
appsrc_ra_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
-appsrc_ra_LDADD = $(GST_LIBS)
+appsrc_ra_LDADD = $(GST_BASE_LIBS) $(GST_LIBS)
appsrc_seekable_SOURCES = appsrc-seekable.c
appsrc_seekable_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
-appsrc_seekable_LDADD = $(GST_LIBS)
+appsrc_seekable_LDADD = $(GST_BASE_LIBS) $(GST_LIBS)
appsink_src_SOURCES = appsink-src.c
appsink_src_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
appsink_src_LDADD = \
$(top_builddir)/gst-libs/gst/app/libgstapp- at GST_MAJORMINOR@.la \
- $(GST_LIBS)
+ $(GST_BASE_LIBS) $(GST_LIBS)
diff --git a/tools/Makefile.am b/tools/Makefile.am
index faba72e..406d64e 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -15,7 +15,9 @@ EXTRA_DIST = \
LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils- at GST_MAJORMINOR@.la\
-lgstpbutils- at GST_MAJORMINOR@ \
- $(GST_LIBS)
+ $(top_builddir)/gst-libs/gst/video/libgstvideo- at GST_MAJORMINOR@.la\
+ -lgstvideo- at GST_MAJORMINOR@ \
+ $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)
AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
More information about the Gstreamer-commits
mailing list