From: Andreas Schneider Date: Fri, 4 Dec 2015 07:12:03 +0000 (+0100) Subject: waf: Do not disable the ntvfs fileserver when we have MIT DC build X-Git-Tag: ldb-1.1.30~402 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d19a66cf866197f17f9abe27387ae045daf0517;p=thirdparty%2Fsamba.git waf: Do not disable the ntvfs fileserver when we have MIT DC build Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlet Reviewed-by: Jeremy Allison --- diff --git a/wscript b/wscript index 032f2ae5fd2..57b87850896 100644 --- a/wscript +++ b/wscript @@ -190,17 +190,15 @@ def configure(conf): if Options.options.with_pam: conf.RECURSE('lib/pam_wrapper') if Options.options.with_ntvfs_fileserver != False: - if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5): + if not (Options.options.without_ad_dc): conf.DEFINE('WITH_NTVFS_FILESERVER', 1) if Options.options.with_ntvfs_fileserver == False: - if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5): + if not (Options.options.without_ad_dc): raise Utils.WafError('--without-ntvfs-fileserver conflicts with --enable-selftest while building the AD DC') if Options.options.with_ntvfs_fileserver == True: if Options.options.without_ad_dc: raise Utils.WafError('--with-ntvfs-fileserver conflicts with --without-ad-dc') - if Options.options.with_system_mitkrb5: - raise Utils.WafError('--with-ntvfs-fileserver conflicts with --with-system-mitkrb5') conf.DEFINE('WITH_NTVFS_FILESERVER', 1) if Options.options.with_pthreadpool: