diff options
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/sysdep/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntvfs/sysdep/config.m4 b/source4/ntvfs/sysdep/config.m4 index 46787f9f0f..f70cac5e64 100644 --- a/source4/ntvfs/sysdep/config.m4 +++ b/source4/ntvfs/sysdep/config.m4 @@ -1,6 +1,6 @@ AC_CHECK_HEADERS(linux/inotify.h asm/unistd.h) AC_CHECK_FUNC(inotify_init) -AC_CHECK_DECL(__NR_inotify_init) +AC_HAVE_DECL(__NR_inotify_init, [#include <asm/unistd.h>]) SMB_ENABLE(sys_notify_inotify, NO) @@ -8,6 +8,6 @@ if test x"$ac_cv_func_inotify_init" = x"yes" -a x"$ac_cv_header_linux_inotify_h" SMB_ENABLE(sys_notify_inotify, YES) fi -if test x"$ac_cv_header_linux_inotify_h" = x"yes" -a x"$ac_cv_have_decl___NR_inotify_init"; then +if test x"$ac_cv_header_linux_inotify_h" = x"yes" -a x"$ac_cv_have___NR_inotify_init_decl" = x"yes"; then SMB_ENABLE(sys_notify_inotify, YES) fi |