docs/pwg/building-testapp.xml: Add extra check.

Original commit message from CVS:
* docs/pwg/building-testapp.xml:
Add extra check.
* examples/pwg/Makefile.am:
Fix buildbot.
This commit is contained in:
Ronald S. Bultje 2005-07-01 13:01:47 +00:00
parent c9a37cf682
commit e62fd449c2
4 changed files with 17 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2005-07-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* docs/pwg/building-testapp.xml:
Add extra check.
* examples/pwg/Makefile.am:
Fix buildbot.
2005-07-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net> 2005-07-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* configure.ac: * configure.ac:

View file

@ -108,6 +108,10 @@ main (gint argc,
/* initialization */ /* initialization */
gst_init (&amp;argc, &amp;argv); gst_init (&amp;argc, &amp;argv);
loop = g_main_loop_new (NULL, FALSE); loop = g_main_loop_new (NULL, FALSE);
if (argc != 2) {
g_print ("Usage: %s &lt;mp3 filename&gt;\n", argv[0]);
return 01;
}
/* create elements */ /* create elements */
pipeline = gst_pipeline_new ("my_pipeline"); pipeline = gst_pipeline_new ("my_pipeline");

View file

@ -7,6 +7,9 @@ libchain_la_SOURCES = chain.c
libchain2_la_SOURCES = chain2.c libchain2_la_SOURCES = chain2.c
libstate_la_SOURCES = state.c libstate_la_SOURCES = state.c
libproperties_la_SOURCES = properties.c libproperties_la_SOURCES = properties.c
DISTCLEANFILES = \
boilerplate.c pads.c chain.c chain2.c state.c properties.c \
init.func caps.func chain.func state.func register.func
EXTRA_DIST = extract.pl EXTRA_DIST = extract.pl

View file

@ -7,6 +7,9 @@ libchain_la_SOURCES = chain.c
libchain2_la_SOURCES = chain2.c libchain2_la_SOURCES = chain2.c
libstate_la_SOURCES = state.c libstate_la_SOURCES = state.c
libproperties_la_SOURCES = properties.c libproperties_la_SOURCES = properties.c
DISTCLEANFILES = \
boilerplate.c pads.c chain.c chain2.c state.c properties.c \
init.func caps.func chain.func state.func register.func
EXTRA_DIST = extract.pl EXTRA_DIST = extract.pl