Skip to content

Commit 0e65289

Browse files
committed
Fix threads dependency as static
1 parent 591c80e commit 0e65289

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515

1616
jobs:
1717
build-non-windows-wheel:
18+
if: false
1819
strategy:
1920
matrix:
2021
include:

meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ libplacebo = dependency('libplacebo', version: '>=5.229.0', static: static_deps,
3636

3737
libdovi = dependency('dovi', required: false, static: static_deps)
3838

39-
deps = [dependency('threads'), libplacebo, libdovi]
39+
threads = dependency('threads', static: static_deps)
40+
deps = [threads, libplacebo, libdovi]
4041

4142
vs_compat = get_option('r73-compat')
4243
if vs_compat

0 commit comments

Comments
 (0)