1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

s3-waf: make sure we always build example auth modules with --enable-developer.

Guenther
This commit is contained in:
Günther Deschner 2011-10-17 15:54:17 +02:00
parent 329c4d12f9
commit 235f78aa95
3 changed files with 11 additions and 0 deletions

View File

@ -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'))

View File

@ -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'))

View File

@ -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')