at 23.11-beta 540 B view raw
1diff --git a/wavefile/libsndfile.py b/wavefile/libsndfile.py 2index 67f0a46..ce066ee 100644 3--- a/wavefile/libsndfile.py 4+++ b/wavefile/libsndfile.py 5@@ -19,11 +19,11 @@ import numpy as np 6 if sys.platform == "win32": 7 dllName = 'libsndfile-1' 8 elif "linux" in sys.platform: 9- dllName = 'libsndfile.so.1' 10+ dllName = '@libsndfile@' 11 elif "cygwin" in sys.platform: 12 dllName = 'libsndfile-1.dll' 13 elif "darwin" in sys.platform: 14- dllName = 'libsndfile.dylib' 15+ dllName = '@libsndfile@' 16 else: 17 dllName = 'libsndfile' 18