diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-10-06 13:50:34 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-10-06 13:50:34 +0000 |
commit | 5f4fb7887107189204fa92978400f9d698a4e319 (patch) | |
tree | 4544b62192cc3c9d7611dcc3a3e021765f4f85b3 | |
parent | f3f59b4b1c18cd6483168adbb3f26d912ca11b7e (diff) | |
download | gst-plugins-bad-5f4fb7887107189204fa92978400f9d698a4e319.tar.gz gst-plugins-bad-5f4fb7887107189204fa92978400f9d698a4e319.tar.bz2 gst-plugins-bad-5f4fb7887107189204fa92978400f9d698a4e319.zip |
adding libstdc++
Original commit message from CVS:
adding libstdc++
-rw-r--r-- | gst/modplug/Makefile.am | 2 | ||||
-rw-r--r-- | gst/modplug/libmodplug/Makefile.am | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gst/modplug/Makefile.am b/gst/modplug/Makefile.am index 44a170f7..d9d73f1e 100644 --- a/gst/modplug/Makefile.am +++ b/gst/modplug/Makefile.am @@ -6,7 +6,7 @@ plugin_LTLIBRARIES = libgstmodplug.la libgstmodplug_la_SOURCES = gstmodplug.cc libgstmodplug_la_CXXFLAGS = $(GST_CFLAGS) -libgstmodplug_la_LIBADD = libmodplug/libmodplug.la +libgstmodplug_la_LIBADD = libmodplug/libmodplug.la -lstdc++ libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstmodplug.h diff --git a/gst/modplug/libmodplug/Makefile.am b/gst/modplug/libmodplug/Makefile.am index be6698b9..07097bdc 100644 --- a/gst/modplug/libmodplug/Makefile.am +++ b/gst/modplug/libmodplug/Makefile.am @@ -2,6 +2,7 @@ noinst_LTLIBRARIES = libmodplug.la libmodplug_la_CXXFLAGS = -fno-exceptions -Wall -ffast-math -D_REENTRANT libmodplug_la_LDFLAGS = -module -avoid-version +libmodplug_la_LIBS = -lstdc++ libmodplug_la_SOURCES = tables.cpp \ sndmix.cpp \ sndfile.cpp \ |