mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
ae0d5d1889
Original commit message from CVS: Massive, massive update of most source files. I went through and cleaned up all the warnings that I could, which involved fixing some of the plugins. The configure.in script was re-arranged and cleaned up so, and a check for libtool 1.3.5 was added to autogen.sh. Added checks for Gtk and GNOME. Some plugins were removed from the list of things to build for various reasons. Added GST_DEBUG_FORCE_DISABLE in gstgetbits, since that's time critical and even an if() from a DEBUG can significantly increase runtimes.
48 lines
921 B
Makefile
48 lines
921 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 \
|
|
gstaudiosink.c \
|
|
gstaudiosrc.c \
|
|
gstfdsink.c \
|
|
gstpipefilter.c \
|
|
gstqueue.c \
|
|
gsttypefind.c \
|
|
gstsinesrc.c \
|
|
$(GSTHTTPSRC)
|
|
|
|
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
|
|
|
|
CFLAGS += -O2 -Wall
|
|
|
|
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(GHTTP_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|