mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('LIBWINBIND-CLIENT',
|
|
source='wb_common.c',
|
|
deps='replace',
|
|
cflags='-DSOCKET_WRAPPER_DISABLE=1 -DWINBINDD_SOCKET_DIR=\"%s\"' % bld.env.WINBINDD_SOCKET_DIR,
|
|
private_library=True
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('nsstest',
|
|
source='nsstest.c',
|
|
deps='LIBSAMBA-UTIL LIBSAMBA-HOSTCONFIG NSS_WRAPPER'
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('wbinfo',
|
|
source='wbinfo.c',
|
|
deps='LIBSAMBA-UTIL LIBCLI_AUTH popt POPT_SAMBA LIBWINBIND-CLIENT LIBWBCLIENT tevent UTIL_TEVENT LIBASYNC_REQ UID_WRAPPER LIBSECURITY LIBNDR NDR_SECURITY'
|
|
)
|
|
|
|
bld.SAMBA_LIBRARY('nss_winbind',
|
|
source='../nsswitch/winbind_nss_linux.c',
|
|
deps='LIBWINBIND-CLIENT',
|
|
realname='libnss_winbind.so.2',
|
|
vnum='2')
|
|
|
|
if bld.CONFIG_SET('HAVE_PAM_START'):
|
|
bld.SAMBA_LIBRARY('pamwinbind',
|
|
source='../nsswitch/pam_winbind.c',
|
|
deps='talloc LIBWBCLIENT LIBWINBIND-CLIENT LIBINIPARSER pam',
|
|
cflags='-DLOCALEDIR=\"%s/locale\"' % bld.env.DATADIR,
|
|
realname='pam_winbind.so',
|
|
)
|