Skip to content

Commit

Permalink
✨ added support for freebsd
Browse files Browse the repository at this point in the history
Closes #32

Co-authored-by: Marite Guerrieri <marite.guerrieri@somenergia.coop>
  • Loading branch information
vokimon and MariteSomEnergia committed Oct 10, 2023
1 parent 03dce95 commit 9005378
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wavefile/libsndfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@
def _libfilename():
for system, libname in [
('win32', 'libsndfile-1'),
('linux', 'libsndfile.so.1'),
('cygwin', 'libsndfile-1.dll'),
('darwin', 'libsndfile.dylib'),
('linux', 'libsndfile.so.1'),
('freebsd', 'libsndfile.so.1'),
('', 'libsndfile'),
]:
if system in sys.platform:
Expand Down

0 comments on commit 9005378

Please sign in to comment.