mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
c299138aaf
Original commit message from CVS: * configure.ac: * gst/audiofx/Makefile.am: * gst/audiofx/audiochebband.c: * gst/audiofx/audiocheblimit.c: * gst/audiofx/math_compat.h: Check for sinh(), cosh() and asinh() and define our own implementations if they're not available. Fixes bug #520880.
39 lines
895 B
Makefile
39 lines
895 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstaudiofx.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstaudiofx_la_SOURCES = audiofx.c\
|
|
audiopanorama.c \
|
|
audioinvert.c \
|
|
audioamplify.c \
|
|
audiodynamic.c \
|
|
audiocheblimit.c \
|
|
audiochebband.c \
|
|
audiowsincband.c \
|
|
audiowsinclimit.c
|
|
|
|
# flags used to compile this plugin
|
|
libgstaudiofx_la_CFLAGS = $(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CONTROLLER_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstaudiofx_la_LIBADD = $(GST_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_CONTROLLER_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
|
$(LIBM)
|
|
libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = audiopanorama.h \
|
|
audioinvert.h \
|
|
audioamplify.h \
|
|
audiodynamic.h \
|
|
audiocheblimit.h \
|
|
audiochebband.h \
|
|
audiowsincband.h \
|
|
audiowsinclimit.h \
|
|
math_compat.h
|
|
|