summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/evemu/base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/evemu/base.py b/python/evemu/base.py
index 64ec5cd..0a25461 100644
--- a/python/evemu/base.py
+++ b/python/evemu/base.py
@@ -143,7 +143,7 @@ class LibC(LibraryWrapper):
@staticmethod
def _cdll():
- return ctypes.CDLL("libc.so.6", use_errno=True)
+ return ctypes.CDLL(None, use_errno=True)
_api_prototypes = {
"fdopen": {
@@ -169,7 +169,7 @@ class LibEvdev(LibraryWrapper):
@staticmethod
def _cdll():
- return ctypes.CDLL("libevdev.so", use_errno=True)
+ return ctypes.CDLL("libevdev.so.2", use_errno=True)
_api_prototypes = {
#const char *libevdev_event_type_get_name(unsigned int type);
@@ -209,7 +209,7 @@ class LibEvemu(LibraryWrapper):
Wrapper for API calls to the evemu library.
"""
- _LIBNAME = "libevemu.so"
+ _LIBNAME = "libevemu.so.3"
@staticmethod
def _cdll():