diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/wscript | 5 | ||||
-rwxr-xr-x | source3/wscript_build | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript index ebcb1b6888..cf96b39107 100644 --- a/source3/wscript +++ b/source3/wscript @@ -59,6 +59,7 @@ def set_options(opt): opt.SAMBA3_ADD_OPTION('syslog') opt.SAMBA3_ADD_OPTION('automount') opt.SAMBA3_ADD_OPTION('aio-support') + opt.SAMBA3_ADD_OPTION('profiling-data') opt.SAMBA3_ADD_OPTION('cluster-support') @@ -1703,6 +1704,10 @@ main() { headers='sys/types.h dirent.h', msg='Checking whether seekdir returns void') + if Options.options.with_profiling_data: + conf.DEFINE('WITH_PROFILE', 1); + + default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam auth_sam auth_unix auth_winbind auth_wbc auth_server auth_domain auth_builtin vfs_default diff --git a/source3/wscript_build b/source3/wscript_build index 1462375daa..24939c4004 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -1021,7 +1021,7 @@ bld.SAMBA3_BINARY('nmbd/nmbd', source=NMBD_SRC, deps='''talloc tdb tevent z cap resolv wbclient dl passdb param ldap LIB_NONSMBD LIBSMB - POPT_SAMBA3 KRBCLIENT NDR_SAMR NDR_LSA''', + POPT_SAMBA3 KRBCLIENT NDR_SAMR NDR_LSA PROFILE''', install_path='${SBINDIR}', vars=locals()) |