mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
0b4c741b9c
We would build, but not use, many components of the NTVFS file server even when we asked not to. They would then consume disk, but not be of any use Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
22 lines
604 B
Python
22 lines
604 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('service_smb',
|
|
source='service_smb.c',
|
|
autoproto='service_smb_proto.h',
|
|
subsystem='service',
|
|
init_function='server_service_smb_init',
|
|
deps='SMB_SERVER netif shares samba-hostconfig POPT_SAMBA',
|
|
internal_module=False,
|
|
enabled=bld.CONFIG_SET('WITH_NTVFS_FILESERVER')
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('SMB_SERVER',
|
|
source='handle.c tcon.c session.c blob.c management.c smb_server.c',
|
|
autoproto='smb_server_proto.h',
|
|
public_deps='share LIBPACKET SMB_PROTOCOL SMB2_PROTOCOL',
|
|
enabled=bld.CONFIG_SET('WITH_NTVFS_FILESERVER')
|
|
)
|
|
|
|
bld.RECURSE('smb')
|
|
bld.RECURSE('smb2')
|