diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2006-06-06 14:39:15 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2006-06-06 14:39:15 +0000 |
commit | 4b6e02936023d78825f782afd80b23a3e43f3f23 (patch) | |
tree | 20204fb8d89cb330348ad9aabaea2394312b47a2 /tests | |
parent | 5f94428ffce236d9faf578e7355404c6583f5c15 (diff) | |
download | gst-plugins-bad-4b6e02936023d78825f782afd80b23a3e43f3f23.tar.gz gst-plugins-bad-4b6e02936023d78825f782afd80b23a3e43f3f23.tar.bz2 gst-plugins-bad-4b6e02936023d78825f782afd80b23a3e43f3f23.zip |
configure.ac: enable building of GDP elements
Original commit message from CVS:
* configure.ac:
enable building of GDP elements
* gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
* gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
(gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
(gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
(gst_gdp_pay_reset_streamheader), (gst_gdp_pay_sink_event),
(gst_gdp_pay_set_property), (gst_gdp_pay_get_property),
(gst_gdp_pay_change_state):
* gst/gdp/gstgdppay.h:
add version 1.0
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index fc09537d..02b03380 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -26,13 +26,14 @@ SUPPRESSIONS = $(top_srcdir)/common/gst.supp clean-local: clean-local-check -check_PROGRAMS = -# elements/gdppay \ -# elements/gdpdepay +check_PROGRAMS = \ + elements/gdppay \ + elements/gdpdepay TESTS = $(check_PROGRAMS) AM_CFLAGS = $(GST_OBJ_CFLAGS) $(GST_CHECK_CFLAGS) $(CHECK_CFLAGS) LDADD = $(GST_OBJ_LIBS) $(GST_CHECK_LIBS) $(CHECK_LIBS) -# elements_gdpdepay_LDFLAGS = $(LDADD) $(GST_GDP_LIBS) +elements_gdpdepay_LDFLAGS = $(LDADD) $(GST_GDP_LIBS) +elements_gdppay_LDFLAGS = $(LDADD) $(GST_GDP_LIBS) |