mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
c1f4b6c39b
BUG: https://bugzilla.samba.org/show_bug.cgi?id=10862 Signed-off-by: Bjoern Baumbach <bb@sernet.de> Reviewed-by: Guenther Deschner <gd@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Günther Deschner <gd@samba.org> Autobuild-Date(master): Thu Oct 9 17:10:12 CEST 2014 on sn-devel-104
8 lines
232 B
Python
8 lines
232 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', install=False)
|