Skip to content

Commit

Permalink
Remove pthread lib dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiFati committed Sep 28, 2022
1 parent 3702498 commit d05d3fb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ def vcpkg_path(root, pkg, triplet):
"opus": (False, False, True),
"portaudio": (True, True, True),
"portmidi": (True, True, True),
"pthreads": (False, True, True),
}
vcpkg_packages_root = os.environ.get("VCPKG_PACKAGES_ROOT", "../vcpkg/packages")
vcpkg_triplet = os.environ.get("VCPKG_DEFAULT_TRIPLET", "x64-windows")
Expand All @@ -271,7 +270,7 @@ def vcpkg_path(root, pkg, triplet):
"include",
])

libraries += ["sndfile", "pthreadVC3"]
libraries += ["sndfile"]
macros.append(("MS_WIN64", None))
else:
include_dirs = ["include", "/usr/include", "/usr/local/include"]
Expand Down

0 comments on commit d05d3fb

Please sign in to comment.