blob: aa63000499ecbde3a1e3384fcc3517657bb3d7fc (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python
conf.CHECK_HEADERS('sys/inotify.h', add_headers=False)
conf.CHECK_DECLS('F_SETLEASE', headers='linux/fcntl.h', reverse=True)
conf.CHECK_DECLS('SA_SIGINFO', headers='signal.h', reverse=True)
if (conf.CONFIG_SET('HAVE_SYS_INOTIFY_H')):
conf.DEFINE('HAVE_LINUX_INOTIFY', 1)
|