Make libtorture private, for now.
authorJelmer Vernooij <jelmer@jelmer.uk>
Thu, 28 Jan 2016 15:21:21 +0000 (15:21 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 13 Jan 2016 03:43:23 +0000 (04:43 +0100)
Signed-Off-By: Jelmer Vernooij <jelmer@jelmer.uk>
Reviewed-By: Andrew Bartlett <abartlet@samba.org>
Reviewed-By: Stefan Metzmacher <metze@samba.org>
lib/torture/torture.pc.in [deleted file]
lib/torture/wscript_build

diff --git a/lib/torture/torture.pc.in b/lib/torture/torture.pc.in
deleted file mode 100644 (file)
index e0421b0..0000000
+++ /dev/null
@@ -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
index ad047e211fcdec7278b2a8d14891d8f10c202f04..2c0064e9edbf8edd1f265ab146c6c373e20713f6 100644 (file)
@@ -1,9 +1,8 @@
 #!/usr/bin/env python
 
 bld.SAMBA_LIBRARY('torture',
-       source='torture.c subunit.c simple.c',
-       vnum='0.0.1',
-       pc_files='torture.pc',
-       public_deps='samba-hostconfig samba-util errors talloc tevent',
-       public_headers='torture.h'
-       )
+    private_library=True,
+    source='torture.c subunit.c simple.c',
+    public_deps='samba-hostconfig samba-util errors talloc tevent',
+    private_headers='torture.h'
+    )