From 235f78aa955084c87fbc9f3bc9f556a9811a71c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Mon, 17 Oct 2011 15:54:17 +0200 Subject: [PATCH] s3-waf: make sure we always build example auth modules with --enable-developer. Guenther --- examples/auth/wscript_build | 9 +++++++++ source3/wscript | 1 + source3/wscript_build | 1 + 3 files changed, 11 insertions(+) create mode 100644 examples/auth/wscript_build 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') -- 2.34.1