mirror of
https://github.com/samba-team/samba.git
synced 2025-01-28 17:47:29 +03:00
867f0a80a8
texpect is the only remaining user of ccan code. Copy in the two routines Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
8 lines
246 B
Python
8 lines
246 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', install=False)
|