From 9065f9644bd32d6ca3a8b9a77d67e0b30891a321 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 23 Oct 2010 23:36:32 +0200 Subject: s4: Rename LIBNETIF to libnetif. --- source4/lib/socket/wscript_build | 44 ++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 24 deletions(-) (limited to 'source4/lib') 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' + ) -- cgit