Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
php5
:
5.6.21
:
extensions
>
php5-inotify
> inotify-0.1.6.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File inotify-0.1.6.patch of Package php5-inotify
--- php_inotify.h.orig 2013-02-17 13:23:26.520011322 +0100 +++ php_inotify.h 2013-02-17 13:23:49.284010353 +0100 @@ -40,7 +40,14 @@ PHP_FUNCTION(inotify_queue_len); PHP_FUNCTION(inotify_read); -#define PHP_INOTIFY_VERSION "0.1.1" +#define PHP_INOTIFY_VERSION "0.1.6" + +/* old glibc fix */ +#define IN_ONLYDIR 0x01000000 /* Only watch the path if it is a + directory. */ +#define IN_DONT_FOLLOW 0x02000000 /* Do not follow a sym link. */ +#define IN_MASK_ADD 0x20000000 /* Add to the mask of an already + existing watch. */ #define INOTIFY_BUF_TOO_SMALL(ret,errno) \ ((ret) == 0 || ((ret) == -1 && (errno) == EINVAL))