mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
compile fixen
Original commit message from CVS: compile fixen
This commit is contained in:
parent
dea02b14b8
commit
f698d6469c
7 changed files with 13 additions and 17 deletions
|
@ -703,15 +703,15 @@ libs/gst/getbits/Makefile
|
||||||
libs/gst/putbits/Makefile
|
libs/gst/putbits/Makefile
|
||||||
libs/gst/control/Makefile
|
libs/gst/control/Makefile
|
||||||
tests/Makefile
|
tests/Makefile
|
||||||
tests/sched/Makefile
|
tests/bufspeed/Makefile
|
||||||
tests/eos/Makefile
|
tests/memchunk/Makefile
|
||||||
tests/muxing/Makefile
|
tests/muxing/Makefile
|
||||||
|
tests/sched/Makefile
|
||||||
testsuite/Makefile
|
testsuite/Makefile
|
||||||
testsuite/bytestream/Makefile
|
testsuite/bytestream/Makefile
|
||||||
testsuite/capsnego/Makefile
|
testsuite/capsnego/Makefile
|
||||||
testsuite/plugin/Makefile
|
testsuite/plugin/Makefile
|
||||||
testsuite/cleanup/Makefile
|
testsuite/cleanup/Makefile
|
||||||
tests/nego/Makefile
|
|
||||||
examples/Makefile
|
examples/Makefile
|
||||||
examples/autoplug/Makefile
|
examples/autoplug/Makefile
|
||||||
examples/helloworld/Makefile
|
examples/helloworld/Makefile
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
noinst_PROGRAMS = seek
|
noinst_PROGRAMS = seek
|
||||||
|
|
||||||
LIBS = $(GLIB_LIBS) $(GST_LIBS)
|
LDADD = $(GST_LIBS)
|
||||||
CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
AM_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
|
@ -2,5 +2,5 @@ noinst_PROGRAMS = test1 test2
|
||||||
|
|
||||||
test1_SOURCES = test1.c gstbuffer.c gstmempool.c
|
test1_SOURCES = test1.c gstbuffer.c gstmempool.c
|
||||||
|
|
||||||
#LIBS += $(GST_LIBS)
|
LDADD = $(GST_LIBS)
|
||||||
CFLAGS += $(GST_CFLAGS)
|
AM_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
|
@ -6,9 +6,7 @@ main (int argc, char *argv[])
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
guint i;
|
guint i;
|
||||||
|
|
||||||
g_thread_init (NULL);
|
gst_init (&argc, &argv);
|
||||||
gtk_init (&argc, &argv);
|
|
||||||
_gst_buffer_initialize ();
|
|
||||||
|
|
||||||
for (i=0; i<5000000; i++) {
|
for (i=0; i<5000000; i++) {
|
||||||
buf = gst_buffer_new ();
|
buf = gst_buffer_new ();
|
||||||
|
|
|
@ -6,9 +6,7 @@ main (int argc, char *argv[])
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
guint i;
|
guint i;
|
||||||
|
|
||||||
g_thread_init (NULL);
|
gst_init (&argc, &argv);
|
||||||
gtk_init (&argc, &argv);
|
|
||||||
_gst_buffer_initialize ();
|
|
||||||
|
|
||||||
for (i=0; i<5000000; i++) {
|
for (i=0; i<5000000; i++) {
|
||||||
buf = gst_buffer_new ();
|
buf = gst_buffer_new ();
|
||||||
|
|
|
@ -3,5 +3,5 @@ noinst_PROGRAMS = gmemchunktest gstmemchunktest
|
||||||
gmemchunktest_SOURCES = gmemchunktest.c
|
gmemchunktest_SOURCES = gmemchunktest.c
|
||||||
gstmemchunktest_SOURCES = gstmemchunktest.c gstmemchunk.c gstmemchunk.h
|
gstmemchunktest_SOURCES = gstmemchunktest.c gstmemchunk.c gstmemchunk.h
|
||||||
|
|
||||||
LIBS = $(GST_LIBS)
|
LDADD = $(GST_LIBS)
|
||||||
CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
AM_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
noinst_PROGRAMS = seek
|
noinst_PROGRAMS = seek
|
||||||
|
|
||||||
LIBS = $(GLIB_LIBS) $(GST_LIBS)
|
LDADD = $(GST_LIBS)
|
||||||
CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
AM_CFLAGS = $(GST_CFLAGS)
|
||||||
|
|
Loading…
Reference in a new issue