summaryrefslogtreecommitdiff
path: root/lib/texpect/wscript
blob: 82f6b25df90fec5dbe3e6737e39e5e185dfab7df (plain)
1
2
3
4
5
6
7
8
9
10
#!/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 nsl',
                     for_selftest=True)