summaryrefslogtreecommitdiffstats
path: root/python-pypi/pyinotify/pyinotify.patch
diff options
context:
space:
mode:
Diffstat (limited to 'python-pypi/pyinotify/pyinotify.patch')
-rw-r--r--python-pypi/pyinotify/pyinotify.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/python-pypi/pyinotify/pyinotify.patch b/python-pypi/pyinotify/pyinotify.patch
new file mode 100644
index 0000000000..5c9b0214c4
--- /dev/null
+++ b/python-pypi/pyinotify/pyinotify.patch
@@ -0,0 +1,17 @@
+--- a/pyinotify.py
++++ b/pyinotify.py
+@@ -95,12 +95,14 @@ __metaclass__ = type # Use new-style classes by default
+ # load libc
+ LIBC = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))
+
+-# the libc version check.
++# the libc version > 2.4 check.
+ # XXX: Maybe it is better to check if the libc has the needed functions inside?
+ # Because there are inotify patches for libc 2.3.6.
+ LIBC.gnu_get_libc_version.restype = ctypes.c_char_p
+ LIBC_VERSION = LIBC.gnu_get_libc_version()
+-if LIBC_VERSION < '2.4':
++if (int(LIBC_VERSION.split('.')[0]) < 2 or
++ (int(LIBC_VERSION.split('.')[0]) == 2 and
++ int(LIBC_VERSION.split('.')[1]) < 4)):
+ raise UnsupportedLibcVersionError(LIBC_VERSION)