mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
c466ad47d5
Add libreplace dependency to texpect, fixes a linking error on Solaris. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11511 Signed-off-by: Tom Schulz <schulz@adi.com> Reviewed-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Thu Oct 22 14:28:17 CEST 2015 on sn-devel-104
8 lines
254 B
Python
8 lines
254 B
Python
#!/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', install=False)
|