mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +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>
11 lines
350 B
Python
11 lines
350 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('SMB_PROTOCOL',
|
|
source='receive.c negprot.c nttrans.c reply.c request.c search.c service.c sesssetup.c srvtime.c trans2.c signing.c',
|
|
autoproto='smb_proto.h',
|
|
deps='dfs_server_ad',
|
|
public_deps='ntvfs LIBPACKET samba-credentials samba_server_gensec',
|
|
enabled=bld.CONFIG_SET('WITH_NTVFS_FILESERVER')
|
|
)
|
|
|