From: Ralph Boehme Date: Fri, 12 Feb 2016 16:25:09 +0000 (+0100) Subject: smbd: fix build with FAM support X-Git-Tag: tevent-0.9.27~12 X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba-autobuild%2F.git;a=commitdiff_plain;h=8b765ac01198cebc1806bce95637c667bfd9aa12 smbd: fix build with FAM support Add missing define of HAVE_FAM when FAM is detected. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11733 Signed-off-by: Ralph Boehme Reviewed-by: Volker Lendecke Autobuild-User(master): Volker Lendecke Autobuild-Date(master): Sun Feb 14 13:50:56 CET 2016 on sn-devel-144 --- diff --git a/source3/wscript b/source3/wscript index d9e10c03494..8fe13749d28 100644 --- a/source3/wscript +++ b/source3/wscript @@ -204,6 +204,7 @@ main() { if samba_fam_libs is not None: conf.DEFINE('SAMBA_FAM_LIBS', samba_fam_libs) + conf.DEFINE('HAVE_FAM', 1) else: if Options.options.with_fam == True: conf.fatal('FAM support requested, but no suitable FAM library found')