]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/globals.py
python: bump SONAME
[notmuch] / bindings / python / notmuch / globals.py
index 2deb87cf02b15d9a2db642dbec8224290f00d548..24b25d3641efef72ead08be70245821cdbffa557 100644 (file)
@@ -24,9 +24,9 @@ from ctypes import CDLL, Structure, POINTER
 try:
     from os import uname
     if uname()[0] == 'Darwin':
-        nmlib = CDLL("libnotmuch.3.dylib")
+        nmlib = CDLL("libnotmuch.4.dylib")
     else:
-        nmlib = CDLL("libnotmuch.so.3")
+        nmlib = CDLL("libnotmuch.so.4")
 except:
     raise ImportError("Could not find shared 'notmuch' library.")