mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
e1a321e8a4
I do not see what would use that in texpect. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
11 lines
328 B
Python
11 lines
328 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',
|
|
for_selftest=True)
|