summaryrefslogtreecommitdiffstats
path: root/source4/lib/socket/wscript_build
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-10-23 23:36:32 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-10-23 22:24:06 +0000
commit9065f9644bd32d6ca3a8b9a77d67e0b30891a321 (patch)
tree12b70d599ce6d05eb195220524928f628bc9de2c /source4/lib/socket/wscript_build
parent49ef2888193dd7cc37c3fe0a980b7cc1abdac805 (diff)
downloadsamba-9065f9644bd32d6ca3a8b9a77d67e0b30891a321.tar.gz
samba-9065f9644bd32d6ca3a8b9a77d67e0b30891a321.tar.xz
samba-9065f9644bd32d6ca3a8b9a77d67e0b30891a321.zip
s4: Rename LIBNETIF to libnetif.
Diffstat (limited to 'source4/lib/socket/wscript_build')
-rw-r--r--source4/lib/socket/wscript_build44
1 files changed, 20 insertions, 24 deletions
diff --git a/source4/lib/socket/wscript_build b/source4/lib/socket/wscript_build
index 0c4fd7e1e20..6aa04811154 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'
+ )