s3-gpo: Build scripts, security and registry CSE with --enable-developer
authorGünther Deschner <gd@samba.org>
Thu, 4 May 2017 13:07:14 +0000 (15:07 +0200)
committerVolker Lendecke <vl@samba.org>
Tue, 9 May 2017 03:18:52 +0000 (05:18 +0200)
Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Tue May  9 05:18:52 CEST 2017 on sn-devel-144

source3/libgpo/gpext/registry.c
source3/libgpo/gpext/scripts.c
source3/libgpo/gpext/security.c
source3/wscript

index 088701aff76f3983dae294eba0d30ff4dadb780e..4a0d0cfe8486625c394dcc76f111f76499488dfd 100644 (file)
@@ -37,6 +37,8 @@
 
 static TALLOC_CTX *ctx = NULL;
 
+NTSTATUS gpext_registry_init(TALLOC_CTX *mem_ctx);
+
 /****************************************************************
 ****************************************************************/
 
index ccd1712bfc9fdcba99352c6aa69516823c870366..de664133b87dfb924195d439a0e10c64127a7bd7 100644 (file)
@@ -44,6 +44,8 @@
 #define GP_SCRIPTS_REG_VAL_PARAMETERS "Parameters"
 #define GP_SCRIPTS_REG_VAL_EXECTIME "ExecTime"
 
+NTSTATUS gpext_scripts_init(TALLOC_CTX *mem_ctx);
+
 static TALLOC_CTX *ctx = NULL;
 
 /****************************************************************
index 3650f4c5008e5075003d9873f22011585e3a0b86..29e7bb7c31ead6472a9133eaddfc5466891a44ae 100644 (file)
@@ -42,6 +42,8 @@
 #define GPTTMPL_SECTION_FILE_SECURITY          "File Security"
 #define GPTTMPL_SECTION_SERVICE_GENERAL_SETTING "Service General Setting"
 
+NTSTATUS gpext_security_init(TALLOC_CTX *mem_ctx);
+
 static TALLOC_CTX *ctx = NULL;
 
 struct gpttmpl_table {
index e9705b9b83167ad9cb7a30fde7076df1e459c158..5a3749c73d37425536bca9ee5ddead5f76a62326 100644 (file)
@@ -1699,6 +1699,7 @@ main() {
         default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
         default_shared_modules.extend(TO_LIST('auth_skel pdb_test'))
         default_shared_modules.extend(TO_LIST('vfs_fake_dfq'))
+        default_shared_modules.extend(TO_LIST('gpext_security gpext_registry gpext_scripts'))
 
     if Options.options.enable_selftest or Options.options.developer:
         default_shared_modules.extend(TO_LIST('vfs_fake_acls vfs_nfs4acl_xattr'))