summaryrefslogtreecommitdiffstats
path: root/lib/texpect/wscript
blob: 51602f15ec24b3e38900a04a4356ff9e98b7da19 (plain)
1
2
3
4
5
6
7
8
9
#!/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')