diff options
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/socket/wscript_build | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/source4/lib/socket/wscript_build b/source4/lib/socket/wscript_build index 0c4fd7e1e2..6aa0481115 100644 --- a/source4/lib/socket/wscript_build +++ b/source4/lib/socket/wscript_build @@ -1,33 +1,29 @@ #!/usr/bin/env python - -bld.SAMBA_LIBRARY('LIBNETIF', - source='interface.c netif.c', - autoproto='netif_proto.h', - deps='LIBSAMBA-UTIL', - private_library=True - ) - +bld.SAMBA_LIBRARY('libnetif', + source='interface.c netif.c', + autoproto='netif_proto.h', + deps='LIBSAMBA-UTIL', + private_library=True + ) bld.SAMBA_MODULE('socket_ip', - source='socket_ip.c', - subsystem='samba_socket', - deps='LIBSAMBA-ERRORS', - internal_module=True - ) - + source='socket_ip.c', + subsystem='samba_socket', + deps='LIBSAMBA-ERRORS', + internal_module=True + ) bld.SAMBA_MODULE('socket_unix', - source='socket_unix.c', - subsystem='samba_socket', - deps='talloc', - internal_module=True - ) - + source='socket_unix.c', + subsystem='samba_socket', + deps='talloc', + internal_module=True + ) bld.SAMBA_SUBSYSTEM('samba_socket', - source='socket.c access.c connect_multi.c connect.c', - public_deps='talloc LIBTSOCKET', - deps='LIBCLI_COMPOSITE LIBCLI_RESOLVE socket_ip socket_unix' - ) + source='socket.c access.c connect_multi.c connect.c', + public_deps='talloc LIBTSOCKET', + deps='LIBCLI_COMPOSITE LIBCLI_RESOLVE socket_ip socket_unix' + ) |