aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings
diff options
context:
space:
mode:
authorGravatar David Bremner <david@tethera.net>2014-09-16 20:50:57 +0200
committerGravatar David Bremner <david@tethera.net>2014-09-16 20:50:57 +0200
commitf6ce18fae9481d2d353b301900e675e47acabb3f (patch)
treeab465e7a0360dce5ec0e798038472824620f6f4b /bindings
parentee3ccccd25396938223c67c7a829753b5480e4bc (diff)
python: bump SONAME
This should have happened in commit 6754ad9f9, but oops. This was not caught by our test suite because it uses an installed notmuch library of it cannot find the just built one.
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/notmuch/globals.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py
index 2deb87cf..24b25d36 100644
--- a/bindings/python/notmuch/globals.py
+++ b/bindings/python/notmuch/globals.py
@@ -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.")