mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
bf7ccbe0f8
Always build the modplug plugin against the system modplug library and remove our own copy. Using the system version has advantages if security issues or other critical bugs are found in libmodplug and our own copy wasn't really maintained anyway. Also our copy only contained some patches to use GLib types and functions. Fixes bug #568837.
9 lines
386 B
Makefile
9 lines
386 B
Makefile
plugin_LTLIBRARIES = libgstmodplug.la
|
|
|
|
libgstmodplug_la_SOURCES = gstmodplug.cc
|
|
libgstmodplug_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MODPLUG_CFLAGS)
|
|
libgstmodplug_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lstdc++ $(LIBM) $(MODPLUG_LIBS)
|
|
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstmodplug_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstmodplug.h
|