diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-22 23:21:56 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-23 07:17:57 +0000 |
commit | 8ccbbe042b7fed310de9a75ddccc69e51bae72d4 (patch) | |
tree | 0f8213c380334717d0ad6f1e69b7efbb5a932fb1 | |
parent | d2008fbbb951a941d380b4efa0eaf9f3cfe54e13 (diff) | |
download | samba-8ccbbe042b7fed310de9a75ddccc69e51bae72d4.tar.gz samba-8ccbbe042b7fed310de9a75ddccc69e51bae72d4.tar.bz2 samba-8ccbbe042b7fed310de9a75ddccc69e51bae72d4.zip |
lib-subunit: fixed build on systems without subunit devel library
Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
-rw-r--r-- | lib/torture/wscript_build | 6 | ||||
-rw-r--r-- | source4/wscript_build | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/lib/torture/wscript_build b/lib/torture/wscript_build index 7830b3a039..a3ba60592d 100644 --- a/lib/torture/wscript_build +++ b/lib/torture/wscript_build @@ -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' ) - diff --git a/source4/wscript_build b/source4/wscript_build index 090c914ae7..6b9fc981e9 100644 --- a/source4/wscript_build +++ b/source4/wscript_build @@ -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') |