587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
26 lines
745 B
Diff
26 lines
745 B
Diff
diff --git a/wavefile/libsndfile.py b/wavefile/libsndfile.py
|
|
index 89c670f..fa19e1d 100644
|
|
--- a/wavefile/libsndfile.py
|
|
+++ b/wavefile/libsndfile.py
|
|
@@ -17,20 +17,7 @@ import ctypes as ct
|
|
import numpy as np
|
|
|
|
def _libfilename():
|
|
- for system, libname in [
|
|
- ('win32', 'libsndfile-1'),
|
|
- ('cygwin', 'libsndfile-1.dll'),
|
|
- ('darwin', 'libsndfile.dylib'),
|
|
- ('linux', 'libsndfile.so.1'),
|
|
- ('freebsd', 'libsndfile.so.1'),
|
|
- ('', 'libsndfile'),
|
|
- ]:
|
|
- if system in sys.platform:
|
|
- return libname
|
|
- raise Exception(
|
|
- 'No libsndfile dll name mapping for platform {}.'
|
|
- .format(sys.platform)
|
|
- )
|
|
+ return "@libsndfile@"
|
|
|
|
dllName = _libfilename()
|
|
_lib=None
|