mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
7dcd7a13a1
Original commit message from CVS: Mostly minor little changes, but two interesting things: 1) removed a pthread_join from the gst_thread_main_loop. commented out because the thread isn't supposed to run pthread_join, the main process is. 2) Fixed a major bug with cothreads in threads. Had to add MAP_FIXED to the mmap() of the cothread stack. Presumably the gilbc that ships with redhat 7.0 now places these mmap requests somewhat randomly. Since they *must* be exactly where we expect them, it was failing. MAP_FIXED forces it to put it where we say.
46 lines
909 B
Makefile
46 lines
909 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstelements.la
|
|
|
|
if HAVE_LIBGHTTP
|
|
GSTHTTPSRC=gsthttpsrc.c
|
|
else
|
|
GSTHTTPSRC=
|
|
endif
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgst.la
|
|
libgstelements_la_SOURCES = \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstidentity.c \
|
|
gstfakesink.c \
|
|
gstdisksrc.c \
|
|
gstasyncdisksrc.c \
|
|
gstfdsrc.c \
|
|
$(GSTHTTPSRC) \
|
|
gstaudiosink.c \
|
|
gstaudiosrc.c \
|
|
gstfdsink.c \
|
|
gstpipefilter.c \
|
|
gstqueue.c \
|
|
gsttypefind.c \
|
|
gstsinesrc.c
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksrc.h \
|
|
gstasyncdisksrc.h \
|
|
gstfdsrc.h \
|
|
gsthttpsrc.h \
|
|
gstaudiosink.h \
|
|
gstaudiosrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gstqueue.h \
|
|
gsttypefind.h \
|
|
gstsinesrc.h
|
|
|
|
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(GHTTP_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|