X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fglobals.py;h=24b25d3641efef72ead08be70245821cdbffa557;hp=2deb87cf02b15d9a2db642dbec8224290f00d548;hb=f6ce18fae9481d2d353b301900e675e47acabb3f;hpb=ee3ccccd25396938223c67c7a829753b5480e4bc 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.")