mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
3758abca8d
Original commit message from CVS: revert part of wingo's patch wingo, I'm not doing this to piss you off ;) but with your change we get the reverse issue : stuff in libs/gst needs gstmarshal.[ch], which are only generated if we go in gst before libs. So unless we just throw the egg at the chicken we'll have to settle for a hack. Alternatively, we could take the egg out of the chicken and put it in a separate tarball which would then be installed ;)
19 lines
864 B
Makefile
19 lines
864 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@
|
|
|
|
## this is a REALLY evil hack
|
|
## but we need to keep it as long as we have libs/gst and libs/ext
|
|
$(top_builddir)/libs/ext/cothreads/cothreads/libcothreads-gthreads.la:
|
|
cd $(top_builddir)/libs/ext/cothreads/cothreads && make
|
|
|