mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
8af369ecf6
Original commit message from CVS: * removed cothread-specific code from gstinfo.c because the new cothreads has no cothread_self() * added a new scheduler, untested but it does compile :-) * cothreads links to the scheduler, not core now * no installation of cothreads headers
13 lines
636 B
Makefile
13 lines
636 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstbasicscheduler.la libgststandardscheduler.la
|
|
|
|
libgstbasicscheduler_la_SOURCES = gstbasicscheduler.c
|
|
libgstbasicscheduler_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstbasicscheduler_la_LIBADD = $(GST_LIBS) ../libcothreads.la
|
|
libgstbasicscheduler_la_LDFLAGS = @GST_LT_LDFLAGS@
|
|
|
|
libgststandardscheduler_la_SOURCES = gststandardscheduler.c
|
|
libgststandardscheduler_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/libs/ext/cothreads
|
|
libgststandardscheduler_la_LIBADD = $(GST_LIBS) $(top_builddir)/libs/ext/cothreads/cothreads/libcothreads-gthreads.la
|
|
libgststandardscheduler_la_LDFLAGS = @GST_LT_LDFLAGS@
|