diff options
Diffstat (limited to '')
-rw-r--r-- | lib/texpect/wscript | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/texpect/wscript b/lib/texpect/wscript new file mode 100644 index 0000000..44f92a8 --- /dev/null +++ b/lib/texpect/wscript @@ -0,0 +1,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', + for_selftest=True) |