Skip to content

Commit fc8baf1

Browse files
committed
✨ added support for freebsd
Closes #32
1 parent 03dce95 commit fc8baf1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

wavefile/libsndfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919
def _libfilename():
2020
for system, libname in [
2121
('win32', 'libsndfile-1'),
22-
('linux', 'libsndfile.so.1'),
2322
('cygwin', 'libsndfile-1.dll'),
2423
('darwin', 'libsndfile.dylib'),
24+
('linux', 'libsndfile.so.1'),
25+
('freebsd', 'libsndfile.so.1'),
2526
('', 'libsndfile'),
2627
]:
2728
if system in sys.platform:

0 commit comments

Comments
 (0)