From: Günther Deschner Date: Mon, 17 Oct 2011 14:08:50 +0000 (+0200) Subject: s3-waf: make sure we always build example pdb modules with --enable-developer. X-Git-Url: http://git.samba.org/?p=obnox%2Fsamba%2Fsamba-obnox.git;a=commitdiff_plain;h=b96a9e1c5b23271f42734a8045e4d95a42e8e33f s3-waf: make sure we always build example pdb modules with --enable-developer. Guenther Autobuild-User: Günther Deschner Autobuild-Date: Mon Oct 17 17:39:36 CEST 2011 on sn-devel-104 --- diff --git a/examples/pdb/wscript_build b/examples/pdb/wscript_build new file mode 100644 index 00000000000..11d00ba2d82 --- /dev/null +++ b/examples/pdb/wscript_build @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +bld.SAMBA3_MODULE('pdb_test', + subsystem='pdb', + source='test.c', + deps='samba-util', + init_function='', + internal_module=bld.SAMBA3_IS_STATIC_MODULE('pdb_test'), + enabled=bld.SAMBA3_IS_ENABLED_MODULE('pdb_test')) + diff --git a/source3/wscript b/source3/wscript index 87755ca894e..5746533effc 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1639,7 +1639,7 @@ main() { default_static_modules.extend(TO_LIST('pdb_ads auth_netlogond charset_weird')) default_shared_modules.extend(TO_LIST('perfcount_test')) default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test')) - default_shared_modules.extend(TO_LIST('auth_skel')) + default_shared_modules.extend(TO_LIST('auth_skel pdb_test')) default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4 vfs_dfs_samba4')) diff --git a/source3/wscript_build b/source3/wscript_build index 2667e328b07..6c27ecde191 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -1407,6 +1407,7 @@ bld.RECURSE('passdb') bld.RECURSE('rpc_server') bld.RECURSE('winbindd') bld.RECURSE('../examples/auth') +bld.RECURSE('../examples/pdb') bld.RECURSE('../examples/VFS')