|
Last change
on this file was 745, checked in by Silvan Scherrer, 13 years ago |
|
Samba Server: updated trunk to 3.6.0
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | #!/usr/bin/env python
|
|---|
| 2 |
|
|---|
| 3 | bld.SAMBA_SUBSYSTEM('NDR_NBT_BUF',
|
|---|
| 4 | source='nbtname.c',
|
|---|
| 5 | deps='talloc',
|
|---|
| 6 | autoproto='nbtname.h'
|
|---|
| 7 | )
|
|---|
| 8 |
|
|---|
| 9 | bld.SAMBA_SUBSYSTEM('lmhosts',
|
|---|
| 10 | source='lmhosts.c',
|
|---|
| 11 | deps='replace talloc'
|
|---|
| 12 | )
|
|---|
| 13 |
|
|---|
| 14 | if bld.env._SAMBA_BUILD_ == 4:
|
|---|
| 15 | bld.SAMBA_LIBRARY('cli-nbt',
|
|---|
| 16 | source='nbtsocket.c namequery.c nameregister.c namerefresh.c namerelease.c dns_hosts_file.c',
|
|---|
| 17 | public_deps='ndr NDR_NBT tevent UTIL_TEVENT NDR_SECURITY samba_socket samba-util lmhosts',
|
|---|
| 18 | private_library=True
|
|---|
| 19 | )
|
|---|
| 20 |
|
|---|
| 21 | bld.SAMBA_BINARY('nmblookup',
|
|---|
| 22 | source='tools/nmblookup.c',
|
|---|
| 23 | manpages='man/nmblookup.1',
|
|---|
| 24 | deps='samba-hostconfig samba-util cli-nbt popt POPT_SAMBA netif LIBCLI_RESOLVE'
|
|---|
| 25 | )
|
|---|
| 26 |
|
|---|
| 27 | bld.SAMBA_PYTHON('python_netbios',
|
|---|
| 28 | source='pynbt.c',
|
|---|
| 29 | public_deps='cli-nbt DYNCONFIG samba-hostconfig',
|
|---|
| 30 | realname='samba/netbios.so'
|
|---|
| 31 | )
|
|---|
| 32 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.