mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
71dcc76b70
We now only build it by default with --enable-sefltest, or otherwise if requested. The NTVFS file server still has features not present in the smbd file server, such as a CIFS/SMB proxy, and a radically different design, but it is also not undergoing any ongoing development so this keeps it in a safe state for care and maintaince, with less of a security risk if such an issue were to come up. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
22 lines
593 B
Python
22 lines
593 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',
|
|
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')
|