Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--orc/meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/orc/meson.build b/orc/meson.build
index bb2c464..626da63 100644
--- a/orc/meson.build
+++ b/orc/meson.build
@@ -101,7 +101,11 @@ endif
orc_c_args = ['-DORC_ENABLE_UNSTABLE_API', '-D_GNU_SOURCE']
-orc_dependencies = [libm, librt, liblog, threads]
+orc_dependencies = [libm, librt, liblog]
+if host_os != 'windows'
+ # winpthread may be detected but we don't use it
+ orc_dependencies += threads
+endif
orc_lib = library ('orc-' + orc_api,
orc_sources,