1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

lib-subunit: fixed build on systems without subunit devel library

Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
This commit is contained in:
Andrew Tridgell 2010-09-22 23:21:56 -07:00
parent d2008fbbb9
commit 8ccbbe042b
2 changed files with 3 additions and 4 deletions

View File

@ -1,11 +1,9 @@
#!/usr/bin/env python
bld.SAMBA_LIBRARY('torture',
source='torture.c subunit.c ../subunit/c/lib/child.c',
source='torture.c subunit.c',
vnum='0.0.1',
pc_files='torture.pc',
public_deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL LIBSAMBA-ERRORS talloc tevent',
public_deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL LIBSAMBA-ERRORS talloc tevent subunit',
public_headers='torture.h'
)

View File

@ -99,6 +99,7 @@ bld.RECURSE('client')
bld.RECURSE('libcli')
bld.RECURSE('../libcli/smb')
bld.RECURSE('../libcli/cldap')
bld.RECURSE('../lib/subunit/c')
bld.RECURSE('kdc')
bld.RECURSE('../lib/smbconf')
bld.RECURSE('../lib/async_req')