mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
23 lines
579 B
Python
23 lines
579 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBWINBIND-CLIENT',
|
|
source='wb_common.c',
|
|
deps='replace',
|
|
cflags='-DSOCKET_WRAPPER_DISABLE=1'
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('nsstest',
|
|
source='nsstest.c',
|
|
installdir='BINDIR',
|
|
deps='LIBSAMBA-UTIL LIBREPLACE_EXT LIBSAMBA-HOSTCONFIG NSS_WRAPPER'
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('wbinfo',
|
|
source='wbinfo.c',
|
|
installdir='BINDIR',
|
|
deps='LIBSAMBA-UTIL LIBREPLACE_EXT LIBCLI_AUTH popt POPT_SAMBA LIBWINBIND-CLIENT LIBWBCLIENT tevent UTIL_TEVENT LIBASYNC_REQ UID_WRAPPER'
|
|
)
|
|
|