1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

Make libtorture private, for now.

Signed-Off-By: Jelmer Vernooij <jelmer@jelmer.uk>
Reviewed-By: Andrew Bartlett <abartlet@samba.org>
Reviewed-By: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Jelmer Vernooij 2016-01-28 15:21:21 +00:00 committed by Jelmer Vernooij
parent c46a8cf258
commit 2f7dde3af7
2 changed files with 5 additions and 18 deletions

View File

@ -1,12 +0,0 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
modulesdir=${prefix}/modules/torture
Name: torture
Description: Samba torture (test) suite
Requires: talloc
Version: @PACKAGE_VERSION@
Libs: @LIB_RPATH@ -L${libdir} -ltorture
Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1

View File

@ -1,9 +1,8 @@
#!/usr/bin/env python #!/usr/bin/env python
bld.SAMBA_LIBRARY('torture', bld.SAMBA_LIBRARY('torture',
source='torture.c subunit.c simple.c', private_library=True,
vnum='0.0.1', source='torture.c subunit.c simple.c',
pc_files='torture.pc', public_deps='samba-hostconfig samba-util errors talloc tevent',
public_deps='samba-hostconfig samba-util errors talloc tevent', private_headers='torture.h'
public_headers='torture.h' )
)