summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-09-05 20:47:05 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-09-05 20:47:05 +0530
commit7397eb0cd43f6ac88a0aed9211d8516ded216195 (patch)
treeb604485667b7349ba4e525794ca3136db5a1603b
parentae7ecfceed5763097d2e40e315cea2cdae168071 (diff)
meson: Don't skip plugins that don't build with MSVC
We now have options for all plugins, so we will just disable these in the cerbero recipe instead. These require external deps, so they won't affect gst-build either.
-rw-r--r--ext/meson.build10
1 files changed, 2 insertions, 8 deletions
diff --git a/ext/meson.build b/ext/meson.build
index 6ad70d42c..1ffa1a248 100644
--- a/ext/meson.build
+++ b/ext/meson.build
@@ -46,14 +46,8 @@ subdir('rtmp')
subdir('sbc')
subdir('smoothstreaming')
#subdir('sndfile')
-if cc.get_id() != 'msvc'
- # soundtouch doesn't do exporting of symbols for DLLs and I'm not sure how to
- # do that for C++ classes. -- Nirbheek
- subdir('soundtouch')
- # libspandsp has a bunch of portability issues in the headers
- # If someone really wants to use this, it shouldn't be hard to port
- subdir('spandsp')
-endif
+subdir('soundtouch')
+subdir('spandsp')
#subdir('spc')
subdir('srt')
subdir('srtp')