projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b60fb33
)
Python bindings: CDLL("libnotmuch.3.dylib") on Darwin
author
Tomi Ollila
<tomi.ollila@iki.fi>
Tue, 25 Jun 2013 14:36:56 +0000
(17:36 +0300)
committer
Justus Winter
<4winter@informatik.uni-hamburg.de>
Tue, 9 Jul 2013 06:38:42 +0000
(08:38 +0200)
Use os.uname() to check for 'Darwin' and load "libnotmuch.3.dylib"
instead of "libnotmuch.so.3" if that is the case.
bindings/python/notmuch/globals.py
patch
|
blob
|
history
diff --git
a/bindings/python/notmuch/globals.py
b/bindings/python/notmuch/globals.py
index c7632c3266d428cc42ee43c652701df13c7364dd..2deb87cf02b15d9a2db642dbec8224290f00d548 100644
(file)
--- a/
bindings/python/notmuch/globals.py
+++ b/
bindings/python/notmuch/globals.py
@@
-22,7
+22,11
@@
from ctypes import CDLL, Structure, POINTER
#-----------------------------------------------------------------------------
#package-global instance of the notmuch library
try:
- nmlib = CDLL("libnotmuch.so.3")
+ from os import uname
+ if uname()[0] == 'Darwin':
+ nmlib = CDLL("libnotmuch.3.dylib")
+ else:
+ nmlib = CDLL("libnotmuch.so.3")
except:
raise ImportError("Could not find shared 'notmuch' library.")