1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00
samba-mirror/source4/lib/socket/wscript_build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
751 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
bld.SAMBA_LIBRARY('netif',
source='interface.c',
deps='samba-util interfaces samba-hostconfig',
private_library=True,
autoproto='netif_proto.h'
)
bld.SAMBA_MODULE('socket_ip',
2010-10-23 23:36:32 +02:00
source='socket_ip.c',
subsystem='samba_socket',
deps='samba-errors',
2010-10-23 23:36:32 +02:00
internal_module=True
)
bld.SAMBA_MODULE('socket_unix',
2010-10-23 23:36:32 +02:00
source='socket_unix.c',
subsystem='samba_socket',
deps='talloc',
internal_module=True
)
bld.SAMBA_SUBSYSTEM('samba_socket',
2010-10-23 23:36:32 +02:00
source='socket.c access.c connect_multi.c connect.c',
public_deps='talloc LIBTSOCKET',
deps='cli_composite LIBCLI_RESOLVE socket_ip socket_unix access'
2010-10-23 23:36:32 +02:00
)