From 0d75c902254c6e27964c631459ef8e9b379b77fc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 22 Mar 2013 09:30:05 +0100 Subject: s3:modules: fix the build of vfs_notify_fam (bug #9545) This adds the --with-fam option and configure checks. Signed-off-by: Stefan Metzmacher Reviewed-by: Volker Lendecke --- source3/modules/wscript_build | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/modules/wscript_build') diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index 8f08d52c03..6726ac309b 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -316,9 +316,13 @@ bld.SAMBA3_MODULE('vfs_gpfs', internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_gpfs'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_gpfs')) +vfs_notify_fam_deps='samba-util ' +if bld.CONFIG_SET('SAMBA_FAM_LIBS'): + vfs_notify_fam_deps += bld.CONFIG_GET('SAMBA_FAM_LIBS') bld.SAMBA3_MODULE('vfs_notify_fam', subsystem='vfs', source=VFS_NOTIFY_FAM_SRC, + deps=vfs_notify_fam_deps, init_function='', internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_notify_fam'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_notify_fam')) -- cgit