mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
29 lines
903 B
Python
29 lines
903 B
Python
#!/usr/bin/env python
|
|
|
|
import Options, Logs
|
|
|
|
def configure(conf):
|
|
if conf.CHECK_BUNDLED_SYSTEM_PKG('wbclient', minversion='0'):
|
|
conf.define('USING_SYSTEM_LIBWBCLIENT', 1)
|
|
|
|
def build(bld):
|
|
if bld.CONFIG_SET('USING_SYSTEM_LIBWBCLIENT'):
|
|
Logs.info("\tSelected system libwbclient build")
|
|
return
|
|
|
|
Logs.info("\tSelected embedded libwbclient build")
|
|
|
|
bld.SAMBA_LIBRARY('wbclient',
|
|
source='''
|
|
wbc_guid.c
|
|
wbc_idmap.c
|
|
wbclient.c
|
|
wbc_pam.c
|
|
wbc_pwd.c
|
|
wbc_sid.c
|
|
wbc_util.c''',
|
|
deps='winbind-client',
|
|
pc_files='wbclient.pc',
|
|
public_headers='wbclient.h',
|
|
vnum='0')
|