mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
fixes for make distcheck does GST_ELEMENT_IS_COTHREAD_STOPPING still exist ? and if so, how should it be found by the...
Original commit message from CVS: fixes for make distcheck does GST_ELEMENT_IS_COTHREAD_STOPPING still exist ? and if so, how should it be found by the bytestream test ?
This commit is contained in:
parent
c81314f924
commit
8a96491618
9 changed files with 25 additions and 21 deletions
|
@ -6,4 +6,4 @@ libgstbasicscheduler_la_SOURCES = gstbasicscheduler.c
|
|||
|
||||
libgstbasicscheduler_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
||||
|
||||
libgstbasicscheduler_la_CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
||||
libgstbasicscheduler_la_CFLAGS = $(GST_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# FIXME : refcounting threads
|
||||
SUBDIRS = capsnego plugin bytestream cleanup
|
||||
# FIXME : refcounting threads bytestream
|
||||
SUBDIRS = capsnego plugin cleanup
|
||||
|
||||
testprogs = test_gst_init
|
||||
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
filterdir = $(libdir)/gst
|
||||
## filterdir = $(libdir)/gst
|
||||
|
||||
testprogs = test1
|
||||
|
||||
check_PROGRAMS = $(testprogs)
|
||||
|
||||
test1_SOURCES = test1.c gstbstest.c mem.c
|
||||
test1_LDFLAGS = -L$(top_builddir)/libs/bytestream/ -lgstbytestream
|
||||
test1_LDFLAGS = $(GST_LIBS) -L$(top_builddir)/libs/gst/bytestream/ -lgstbytestream -L$(top_builddir)/gst/schedulers/ -lgstbasicscheduler
|
||||
test1_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
noinst_HEADERS = mem.h
|
||||
|
||||
# we have nothing but apps here, we can do this safely
|
||||
LIBS = $(GST_LIBS)
|
||||
CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
||||
# LIBS = $(GST_LIBS)
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <libs/bytestream/gstbytestream.h>
|
||||
#include <gst/bytestream/bytestream.h>
|
||||
|
||||
#define GST_TYPE_BSTEST (gst_bstest_get_type())
|
||||
#define GST_BSTEST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BSTEST,GstBsTest))
|
||||
|
@ -271,7 +271,9 @@ gst_bstest_loop (GstElement * element)
|
|||
|
||||
i++;
|
||||
}
|
||||
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element));
|
||||
/* } while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element)); */
|
||||
|
||||
} while (0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# FIXME : tests need fixing
|
||||
testprogs = dynamic linked static # loading registry static2
|
||||
## filterdir = $(libdir)/gst
|
||||
testprogs = static # dynamic linked loading registry static2
|
||||
# filterdir = $(libdir)/gst
|
||||
|
||||
noinst_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# FIXME : refcounting threads
|
||||
SUBDIRS = capsnego plugin bytestream cleanup
|
||||
# FIXME : refcounting threads bytestream
|
||||
SUBDIRS = capsnego plugin cleanup
|
||||
|
||||
testprogs = test_gst_init
|
||||
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
filterdir = $(libdir)/gst
|
||||
## filterdir = $(libdir)/gst
|
||||
|
||||
testprogs = test1
|
||||
|
||||
check_PROGRAMS = $(testprogs)
|
||||
|
||||
test1_SOURCES = test1.c gstbstest.c mem.c
|
||||
test1_LDFLAGS = -L$(top_builddir)/libs/bytestream/ -lgstbytestream
|
||||
test1_LDFLAGS = $(GST_LIBS) -L$(top_builddir)/libs/gst/bytestream/ -lgstbytestream -L$(top_builddir)/gst/schedulers/ -lgstbasicscheduler
|
||||
test1_CFLAGS = $(GST_CFLAGS)
|
||||
|
||||
noinst_HEADERS = mem.h
|
||||
|
||||
# we have nothing but apps here, we can do this safely
|
||||
LIBS = $(GST_LIBS)
|
||||
CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
||||
# LIBS = $(GST_LIBS)
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <libs/bytestream/gstbytestream.h>
|
||||
#include <gst/bytestream/bytestream.h>
|
||||
|
||||
#define GST_TYPE_BSTEST (gst_bstest_get_type())
|
||||
#define GST_BSTEST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BSTEST,GstBsTest))
|
||||
|
@ -271,7 +271,9 @@ gst_bstest_loop (GstElement * element)
|
|||
|
||||
i++;
|
||||
}
|
||||
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element));
|
||||
/* } while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element)); */
|
||||
|
||||
} while (0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# FIXME : tests need fixing
|
||||
testprogs = dynamic linked static # loading registry static2
|
||||
## filterdir = $(libdir)/gst
|
||||
testprogs = static # dynamic linked loading registry static2
|
||||
# filterdir = $(libdir)/gst
|
||||
|
||||
noinst_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
||||
|
||||
|
|
Loading…
Reference in a new issue