diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-13 09:50:19 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-13 09:50:19 +0000 |
commit | 1f1d9b874f80998ee76dd6f721f2942b2d72a581 (patch) | |
tree | f5eb0188738255e79118b091327e811b77d00082 /gst/modplug/Makefile.am | |
parent | eee0a6300f3b26b5d3bdcc1781c7311dca77ceae (diff) | |
download | gst-plugins-bad-1f1d9b874f80998ee76dd6f721f2942b2d72a581.tar.gz gst-plugins-bad-1f1d9b874f80998ee76dd6f721f2942b2d72a581.tar.bz2 gst-plugins-bad-1f1d9b874f80998ee76dd6f721f2942b2d72a581.zip |
hardlink stdc++ until someone explains us The One True Way
Original commit message from CVS:
hardlink stdc++ until someone explains us The One True Way
Diffstat (limited to 'gst/modplug/Makefile.am')
-rw-r--r-- | gst/modplug/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/modplug/Makefile.am b/gst/modplug/Makefile.am index b5b4f755..2bd7fb6b 100644 --- a/gst/modplug/Makefile.am +++ b/gst/modplug/Makefile.am @@ -8,7 +8,8 @@ libgstmodplug_la_SOURCES = modplug_types.c gstmodplug.cc libgstmodplug_la_CFLAGS = $(GST_CFLAGS) libgstmodplug_la_CXXFLAGS = $(GST_CFLAGS) libgstmodplug_la_LIBADD = $(top_builddir)/gst/modplug/libmodplug/libmodplug.la -libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +# we add stdc++ because it'll be used by C programs +libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lstdc++ noinst_HEADERS = gstmodplug.h modplug_types.h |