mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
b9e8959c3d
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
11 lines
332 B
Python
11 lines
332 B
Python
#!/usr/bin/env python
|
|
|
|
def configure(conf):
|
|
conf.CHECK_FUNCS_IN('openpty', 'util', checklibc=True, headers='pty.h util.h bsd/libutil.h libutil.h')
|
|
|
|
def build(bld):
|
|
bld.SAMBA_BINARY('texpect',
|
|
'texpect.c',
|
|
deps='popt util replace sys_rw nsl',
|
|
for_selftest=True)
|