From: Günther Deschner Date: Mon, 17 Oct 2011 13:54:17 +0000 (+0200) Subject: s3-waf: make sure we always build example auth modules with --enable-developer. X-Git-Url: http://git.samba.org/?p=obnox%2Fsamba%2Fsamba-obnox.git;a=commitdiff_plain;h=235f78aa955084c87fbc9f3bc9f556a9811a71c4 s3-waf: make sure we always build example auth modules with --enable-developer. Guenther --- diff --git a/examples/auth/wscript_build b/examples/auth/wscript_build new file mode 100644 index 00000000000..91f5302918b --- /dev/null +++ b/examples/auth/wscript_build @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +bld.SAMBA3_MODULE('auth_skel', + subsystem='auth', + source='auth_skel.c', + deps='samba-util', + init_function='', + internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_skel'), + enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_skel')) diff --git a/source3/wscript b/source3/wscript index 671785230c4..87755ca894e 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1639,6 +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_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4 vfs_dfs_samba4')) diff --git a/source3/wscript_build b/source3/wscript_build index 0e5de86772d..2667e328b07 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -1406,6 +1406,7 @@ bld.RECURSE('pam_smbpass') bld.RECURSE('passdb') bld.RECURSE('rpc_server') bld.RECURSE('winbindd') +bld.RECURSE('../examples/auth') bld.RECURSE('../examples/VFS')