summaryrefslogtreecommitdiff
path: root/source4/lib/registry
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2016-01-28 15:21:21 +0000
committerJelmer Vernooij <jelmer@samba.org>2016-01-13 04:43:23 +0100
commit232726a4b414ff1a51e454545bca58052400316b (patch)
tree6e138b76567cfce69832cb7c42a6f3b4fbedde31 /source4/lib/registry
parent2f7dde3af769fb367679f42494d30c298adacfec (diff)
downloadsamba-232726a4b414ff1a51e454545bca58052400316b.tar.gz
Make libregistry private, for now.
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-By: Andrew Bartlett <abartlet@samba.org> Reviewed-By: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/lib/registry')
-rw-r--r--source4/lib/registry/registry.pc.in12
-rw-r--r--source4/lib/registry/wscript_build5
2 files changed, 2 insertions, 15 deletions
diff --git a/source4/lib/registry/registry.pc.in b/source4/lib/registry/registry.pc.in
deleted file mode 100644
index e9239317e2d..00000000000
--- a/source4/lib/registry/registry.pc.in
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: registry
-Description: Windows-style registry library
-Requires: talloc
-Requires.private: ldb
-Version: @PACKAGE_VERSION@
-Libs: @LIB_RPATH@ -L${libdir} -lregistry
-Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1
diff --git a/source4/lib/registry/wscript_build b/source4/lib/registry/wscript_build
index 495969a9150..c558b225a3b 100644
--- a/source4/lib/registry/wscript_build
+++ b/source4/lib/registry/wscript_build
@@ -12,10 +12,9 @@ bld.SAMBA_SUBSYSTEM('TDR_REGF',
bld.SAMBA_LIBRARY('registry',
source='interface.c util.c samba.c patchfile_dotreg.c patchfile_preg.c patchfile.c regf.c hive.c local.c ldb.c rpc.c',
- pc_files='registry.pc',
public_deps='dcerpc samba-util TDR_REGF ldb RPC_NDR_WINREG ldbsamba util_reg',
- public_headers='registry.h',
- vnum='0.0.1'
+ private_headers='registry.h',
+ private_library=True
)