mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
3ba74c83dc
Guenther Pair-Programmed-With: Andreas Schneider <asn@samba.org> Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Andrew Bartlet <abartlet@samba.org>
10 lines
262 B
Python
10 lines
262 B
Python
#!/usr/bin/env python
|
|
|
|
def configure(conf):
|
|
conf.CHECK_FUNCS_IN('openpty', 'util', checklibc=True, headers='pty.h util.h libutil.h')
|
|
|
|
def build(bld):
|
|
bld.SAMBA_BINARY('texpect',
|
|
'texpect.c',
|
|
deps='popt util')
|