diff options
author | Brian Cameron <brian.cameron@sun.com> | 2009-01-23 10:44:20 +0100 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2009-01-23 10:44:20 +0100 |
commit | eac03fc77e1cde1a67bbad15747afcb3b976ad9b (patch) | |
tree | d4cd2f5a2983cdb891789331da96ed31dee7ba65 /gst/modplug | |
parent | 486d76b4544ee9d2c4cf6ab5730f0f12c422a6d0 (diff) | |
download | gstreamer-plugins-bad-eac03fc77e1cde1a67bbad15747afcb3b976ad9b.tar.gz |
Link modplug plugin with -lm. Fixes bug #568483.
Diffstat (limited to 'gst/modplug')
-rw-r--r-- | gst/modplug/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/modplug/Makefile.am b/gst/modplug/Makefile.am index c621f5484..5440e52a4 100644 --- a/gst/modplug/Makefile.am +++ b/gst/modplug/Makefile.am @@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstmodplug.la libgstmodplug_la_SOURCES = gstmodplug.cc libgstmodplug_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) -libgstmodplug_la_LIBADD = $(top_builddir)/gst/modplug/libmodplug/libmodplug.la $(GST_PLUGINS_BASE_LIBS) -lstdc++ +libgstmodplug_la_LIBADD = $(top_builddir)/gst/modplug/libmodplug/libmodplug.la $(GST_PLUGINS_BASE_LIBS) -lstdc++ $(LIBM) libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstmodplug_la_LIBTOOLFLAGS = --tag=disable-static |