diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/ntvfs/sysdep/wscript_build | 13 | ||||
-rw-r--r-- | source4/ntvfs/sysdep/wscript_configure | 5 |
2 files changed, 10 insertions, 8 deletions
diff --git a/source4/ntvfs/sysdep/wscript_build b/source4/ntvfs/sysdep/wscript_build index c0f5d3eb0c..8330d47d9b 100644 --- a/source4/ntvfs/sysdep/wscript_build +++ b/source4/ntvfs/sysdep/wscript_build @@ -1,12 +1,9 @@ -# AUTOGENERATED by mktowscript.pl from ../../source4/ntvfs/sysdep/config.mk -# Please remove this notice if hand editing - - bld.SAMBA_MODULE('sys_notify_inotify', - source='inotify.c', - subsystem='sys_notify', - init_function='sys_notify_inotify_init', - deps='LIBEVENTS' + source='inotify.c', + subsystem='sys_notify', + init_function='sys_notify_inotify_init', + deps='LIBEVENTS', + enabled = bld.CONFIG_SET('HAVE_LINUX_INOTIFY') ) diff --git a/source4/ntvfs/sysdep/wscript_configure b/source4/ntvfs/sysdep/wscript_configure index 6cfa4abe91..f1d572e527 100644 --- a/source4/ntvfs/sysdep/wscript_configure +++ b/source4/ntvfs/sysdep/wscript_configure @@ -7,3 +7,8 @@ conf.CHECK_DECLS('F_SETLEASE', headers='linux/fcntl.h', reverse=True) conf.CHECK_DECLS('SA_SIGINFO', headers='signal.h', reverse=True) conf.CHECK_DECLS('__NR_inotify_init', reverse=True, headers='asm/unistd.h') + +if (conf.CONFIG_SET('HAVE___NR_INOTIFY_INIT') and + (conf.CONFIG_SET('HAVE_LINUX_INOTIFY_H') or + conf.CONFIG_SET('HAVE_SYS_INOTIFY_H'))): + conf.DEFINE('HAVE_LINUX_INOTIFY', 1) |