repo.or.cz
/
samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s3:winbindd: Remove unused set_routing_domain()
[samba.git]
/
source3
/
nmbd
/
wscript_build
blob
399cdb441888e124ea52a8b736c7bd3fd4dcf0f8
1
#!/usr/bin/env python
2
3
nmbd_cflags
=
''
4
if
bld
.
CONFIG_SET
(
'HAVE_WNO_ERROR_STRINGOP_OVERFLOW'
):
5
nmbd_cflags
=
'-Wno-error=stringop-overflow'
6
7
bld
.
SAMBA3_BINARY
(
'nmbd'
,
8
source
=
'''
9
asyncdns.c
10
nmbd.c
11
nmbd_become_dmb.c
12
nmbd_become_lmb.c
13
nmbd_browserdb.c
14
nmbd_browsesync.c
15
nmbd_elections.c
16
nmbd_incomingdgrams.c
17
nmbd_incomingrequests.c
18
nmbd_lmhosts.c
19
nmbd_logonnames.c
20
nmbd_mynames.c
21
nmbd_namelistdb.c
22
nmbd_namequery.c
23
nmbd_nameregister.c
24
nmbd_namerelease.c
25
nmbd_nodestatus.c
26
nmbd_packets.c
27
nmbd_processlogon.c
28
nmbd_responserecordsdb.c
29
nmbd_sendannounce.c
30
nmbd_serverlistdb.c
31
nmbd_subnetdb.c
32
nmbd_winsproxy.c
33
nmbd_winsserver.c
34
nmbd_workgroupdb.c
35
nmbd_synclists.c
36
'''
,
37
cflags
=
nmbd_cflags
,
38
deps
=
'''
39
talloc
40
tevent
41
smbconf
42
libsmb
43
CMDLINE_S3
44
'''
,
45
install_path
=
'$
{SBINDIR}
'
)