mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
2b25e97bef
This reverts commit 7426be70ff
.
Re-enable the aiff muxer now that gst-plugins-bad 0.10.17 is out
and we can rely on gst-plugins-base from git.
14 lines
371 B
Makefile
14 lines
371 B
Makefile
plugin_LTLIBRARIES = libgstaiff.la
|
|
|
|
libgstaiff_la_SOURCES = aiff.c aiffmux.c aiffparse.c
|
|
libgstaiff_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstaiff_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(LIBM)
|
|
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaiff_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = aiffmux.h aiffparse.h
|