aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-03 15:18:28 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-03 15:18:28 +0000
commit9b13236912b58518224f746b06233f122ce3a061 (patch)
tree14c6c552ec33aa3f693ab0a7e7e33102ae7768f9
parent3875e499b7df8df5a01f2e6ed866f270ec60edc7 (diff)
Compatibility fix for glibc 2.4
(Closes issue #14820) Reported by: phsultan git-svn-id: http://svn.digium.com/svn/asterisk/trunk@186297 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/stdtime/localtime.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/main/stdtime/localtime.c b/main/stdtime/localtime.c
index 10bc1eff6..59bccf7a0 100644
--- a/main/stdtime/localtime.c
+++ b/main/stdtime/localtime.c
@@ -310,7 +310,11 @@ static void add_notify(struct state *sp, const char *path)
sp->wd[1] = -1;
}
/* or if the symlink itself changes (or the real file is here, if path is not a symlink) */
- sp->wd[0] = inotify_add_watch(inotify_fd, path, IN_ATTRIB | IN_DELETE_SELF | IN_MODIFY | IN_MOVE_SELF | IN_CLOSE_WRITE | IN_DONT_FOLLOW);
+ sp->wd[0] = inotify_add_watch(inotify_fd, path, IN_ATTRIB | IN_DELETE_SELF | IN_MODIFY | IN_MOVE_SELF | IN_CLOSE_WRITE
+#ifdef IN_DONT_FOLLOW /* Only defined in glibc 2.5 and above */
+ | IN_DONT_FOLLOW
+#endif
+ );
}
}
#else