summaryrefslogtreecommitdiffstats
path: root/lib/texpect/wscript
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-12-10 12:23:04 +0000
committerGünther Deschner <gd@samba.org>2014-12-18 16:31:48 +0100
commit0da7295fbc34170385d2b6bd165685aa092ab0ec (patch)
treefe728058dd74581f04b0915b4bd7cd34f42cb0c6 /lib/texpect/wscript
parent349ba5188a93a3d4679de4908af8cef8cf0862cb (diff)
lib/texpect: prefer bsd/libutil.h if available
Reviewed-by: Guenther Deschner <gd@samba.org> Autobuild-User(master): Günther Deschner <gd@samba.org> Autobuild-Date(master): Thu Dec 18 16:31:48 CET 2014 on sn-devel-104
Diffstat (limited to 'lib/texpect/wscript')
-rw-r--r--lib/texpect/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/texpect/wscript b/lib/texpect/wscript
index 4163ca10bd..62a1d4dbb9 100644
--- a/lib/texpect/wscript
+++ b/lib/texpect/wscript
@@ -1,7 +1,7 @@
#!/usr/bin/env python
def configure(conf):
- conf.CHECK_FUNCS_IN('openpty', 'util', checklibc=True, headers='pty.h util.h libutil.h')
+ 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', install=False)