summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKouhei Sutou <kou@clear-code.com>2016-04-03 18:06:20 +0900
committerTim-Philipp Müller <tim@centricular.com>2016-04-06 14:34:55 +0100
commit60d14bf879e77df7dc390e88c9839c83094cae8e (patch)
treed7ba37e0101751cb1f6746efc8a8df6326e83197
parentfa4484818142c017cdfd9defd4e5edfb4c93ae83 (diff)
downloadgstreamer-plugins-bad-60d14bf879e77df7dc390e88c9839c83094cae8e.tar.gz
directsoundsrc: add missing -lole32
CLSIDFromString() requires ole32.dll. See https://msdn.microsoft.com/en-us/library/windows/desktop/ms680589%28v=vs.85%29.aspx CLSIDFromString() is introduced at f9464ce3549c2b3948a582464631ba4f8dd0d5e7 . https://bugzilla.gnome.org/show_bug.cgi?id=764523
-rw-r--r--sys/directsound/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/directsound/Makefile.am b/sys/directsound/Makefile.am
index cfc769f6c..530b0211c 100644
--- a/sys/directsound/Makefile.am
+++ b/sys/directsound/Makefile.am
@@ -5,7 +5,7 @@ libgstdirectsoundsrc_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) $(DIRECTX_CFLAGS)
libgstdirectsoundsrc_la_LIBADD = \
$(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
- $(DIRECTX_LDFLAGS) $(DIRECTSOUND_LIBS)
+ $(DIRECTX_LDFLAGS) $(DIRECTSOUND_LIBS) -lole32
libgstdirectsoundsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstdirectsoundsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)