Skip to content

Commit

Permalink
Merge pull request #11 from gdt/master
Browse files Browse the repository at this point in the history
setup.py: Include other BSDs in elif clause matching freebsd
  • Loading branch information
synesthesiam authored Oct 19, 2023
2 parents 7be98ca + a5ea46f commit 1b37d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
"'-D_USE_MATH_DEFINES'",
]
libraries += ["winmm"]
elif system == "freebsd":
elif system == 'dragonfly' or system == 'freebsd' or system == 'netbsd' or system == 'openbsd':
system_cflags += ["-DWEBRTC_BSD", "-DWEBRTC_THREAD_RR", "-DWEBRTC_POSIX"]
else:
raise ValueError(f"Unsupported system: {system}")
Expand Down

0 comments on commit 1b37d79

Please sign in to comment.