mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
37c010c00d
Original commit message from CVS: Convert XMMS and LIBGHTTP checks to use GST_CHECK_FEATURE() XMMS check is turned off by default (though not in a very neat way)
45 lines
793 B
Makefile
45 lines
793 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstelements.la
|
|
|
|
if USE_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 \
|
|
gstdisksink.c \
|
|
gstfdsrc.c \
|
|
gstfdsink.c \
|
|
gstmultidisksrc.c \
|
|
gstpipefilter.c \
|
|
gsttee.c \
|
|
gstsinesrc.c \
|
|
$(GSTHTTPSRC)
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksrc.h \
|
|
gstdisksink.h \
|
|
gstfdsrc.h \
|
|
gstmultidisksrc.h \
|
|
gsthttpsrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gsttee.h \
|
|
gstsinesrc.h
|
|
|
|
CFLAGS += -O2 -Wall
|
|
LDFLAGS += -lm
|
|
|
|
libgstelements_la_LIBADD = $(GHTTP_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|