diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-02-24 22:52:48 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-02-24 22:52:48 +0000 |
commit | bc8d60a4e34445d4fe95e50654a737ad91d52772 (patch) | |
tree | 0f99d40bc59b537ffe102341b9e0987015e54f32 /gst | |
parent | da5144bc04185eff0cf95b8fbc6da347007b8a81 (diff) | |
download | gst-plugins-bad-bc8d60a4e34445d4fe95e50654a737ad91d52772.tar.gz gst-plugins-bad-bc8d60a4e34445d4fe95e50654a737ad91d52772.tar.bz2 gst-plugins-bad-bc8d60a4e34445d4fe95e50654a737ad91d52772.zip |
Fix build with LDFLAGS='-Wl,-z,defs'.
Original commit message from CVS:
* configure.ac:
* ext/gsm/Makefile.am:
* ext/ladspa/Makefile.am:
* ext/wavpack/Makefile.am:
* gst/equalizer/Makefile.am:
* gst/filter/Makefile.am:
* gst/mve/Makefile.am:
* gst/nsf/Makefile.am:
* gst/replaygain/Makefile.am:
* gst/speed/Makefile.am:
Fix build with LDFLAGS='-Wl,-z,defs'.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/equalizer/Makefile.am | 4 | ||||
-rw-r--r-- | gst/filter/Makefile.am | 3 | ||||
-rw-r--r-- | gst/mve/Makefile.am | 2 | ||||
-rw-r--r-- | gst/nsf/Makefile.am | 2 | ||||
-rw-r--r-- | gst/replaygain/Makefile.am | 2 | ||||
-rw-r--r-- | gst/speed/Makefile.am | 2 |
6 files changed, 8 insertions, 7 deletions
diff --git a/gst/equalizer/Makefile.am b/gst/equalizer/Makefile.am index 1ef12c94..f4f2198c 100644 --- a/gst/equalizer/Makefile.am +++ b/gst/equalizer/Makefile.am @@ -1,8 +1,8 @@ plugin_LTLIBRARIES = libgstequalizer.la libgstequalizer_la_SOURCES = gstiirequalizer.c gstiirequalizer.h -libgstequalizer_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) -libgstequalizer_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) +libgstequalizer_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) +libgstequalizer_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(LIBM) libgstequalizer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstiirequalizer.h diff --git a/gst/filter/Makefile.am b/gst/filter/Makefile.am index 31e7a8d6..d17e3d2c 100644 --- a/gst/filter/Makefile.am +++ b/gst/filter/Makefile.am @@ -6,7 +6,8 @@ libgstfilter_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFL libgstfilter_la_LIBADD = \ $(GST_BASE_LIBS) \ $(GST_LIBS) \ - $(GST_CONTROLLER_LIBS) + $(GST_CONTROLLER_LIBS) \ + $(LIBM) libgstfilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) diff --git a/gst/mve/Makefile.am b/gst/mve/Makefile.am index 3b1a5a4c..950d9956 100644 --- a/gst/mve/Makefile.am +++ b/gst/mve/Makefile.am @@ -1,7 +1,7 @@ plugin_LTLIBRARIES = libgstmve.la libgstmve_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) -libgstmve_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) +libgstmve_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) libgstmve_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstmve_la_SOURCES = \ diff --git a/gst/nsf/Makefile.am b/gst/nsf/Makefile.am index d501f948..75968254 100644 --- a/gst/nsf/Makefile.am +++ b/gst/nsf/Makefile.am @@ -27,7 +27,7 @@ NOSEFART_INCLUDES=fmopl.h \ libgstnsf_la_SOURCES = gstnsf.c $(NOSEFART_SOURCES) libgstnsf_la_CFLAGS = $(GST_CFLAGS) -DNSF_PLAYER -libgstnsf_la_LIBADD = $(GST_LIBS) +libgstnsf_la_LIBADD = $(GST_LIBS) $(LIBM) libgstnsf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstnsf.h $(NOSEFART_INCLUDES) diff --git a/gst/replaygain/Makefile.am b/gst/replaygain/Makefile.am index eb44591e..d4523654 100644 --- a/gst/replaygain/Makefile.am +++ b/gst/replaygain/Makefile.am @@ -4,7 +4,7 @@ libgstreplaygain_la_SOURCES = \ gstrganalysis.c \ rganalysis.c libgstreplaygain_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) -libgstreplaygain_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) +libgstreplaygain_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(LIBM) libgstreplaygain_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) # headers we need but don't want installed diff --git a/gst/speed/Makefile.am b/gst/speed/Makefile.am index 00846d28..bec45277 100644 --- a/gst/speed/Makefile.am +++ b/gst/speed/Makefile.am @@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstspeed.la libgstspeed_la_SOURCES = gstspeed.c libgstspeed_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) -libgstspeed_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) +libgstspeed_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_BASE_LIBS) $(LIBM) libgstspeed_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstspeed.h |