mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
r13944: Yet another round of splitups.
This commit is contained in:
parent
f4996fbacc
commit
f87debeb12
@ -29,3 +29,5 @@ struct cldapd_server {
|
||||
struct task_server *task;
|
||||
struct ldb_context *samctx;
|
||||
};
|
||||
|
||||
#include "cldap_server/proto.h"
|
||||
|
@ -3,6 +3,7 @@
|
||||
#######################
|
||||
# Start SUBSYSTEM CLDAPD
|
||||
[SUBSYSTEM::CLDAPD]
|
||||
PRIVATE_PROTO_HEADER = proto.h
|
||||
OBJ_FILES = \
|
||||
cldap_server.o \
|
||||
netlogon.o
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "librpc/gen_ndr/ndr_srvsvc.h"
|
||||
#include "librpc/gen_ndr/ndr_lsa.h"
|
||||
#include "libcli/raw/libcliraw.h"
|
||||
#include "libcli/util/clilsa.h"
|
||||
#include "system/dir.h"
|
||||
#include "system/filesys.h"
|
||||
#include "dlinklist.h"
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
#include "includes.h"
|
||||
#include "lib/registry/registry.h"
|
||||
#include "lib/registry/reg_backend_rpc.h"
|
||||
#include "gtk/common/gtk-smb.h"
|
||||
|
||||
static GtkTreeStore *store_keys;
|
||||
|
@ -274,6 +274,9 @@ extern int mprMemcpy(char *dest, int destMax, const char *src, int nbytes);
|
||||
extern void mprSetCtx(void *ctx);
|
||||
extern void *mprMemCtx(void);
|
||||
|
||||
/* This function needs to be provided by anyone using ejs */
|
||||
void ejs_exception(const char *reason);
|
||||
|
||||
#define mprStrCmpAnyCase(s1, s2) strcasecmp_m(s1, s2)
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -45,6 +45,7 @@ OBJ_FILES = \
|
||||
################################################
|
||||
# Start SUBSYSTEM LIBCOMPRESSION
|
||||
[SUBSYSTEM::LIBCOMPRESSION]
|
||||
NOPROTO = YES
|
||||
OBJ_FILES = \
|
||||
compression/mszip.o
|
||||
# End SUBSYSTEM LIBCOMPRESION
|
||||
|
@ -7,5 +7,6 @@ REQUIRED_SUBSYSTEMS = CREDENTIALS
|
||||
OBJ_FILES = popt_common.o
|
||||
|
||||
[SUBSYSTEM::POPT_CREDENTIALS]
|
||||
PRIVATE_PROTO_HEADER = popt_credentials.h
|
||||
OBJ_FILES = popt_credentials.o
|
||||
REQUIRED_SUBSYSTEMS = CREDENTIALS LIBCMDLINE_CREDENTIALS
|
||||
|
@ -30,6 +30,7 @@
|
||||
#include "lib/messaging/irpc.h"
|
||||
#include "db_wrap.h"
|
||||
#include "lib/tdb/include/tdbutil.h"
|
||||
#include "util/unix_privs.h"
|
||||
|
||||
/* change the message version with any incompatible changes in the protocol */
|
||||
#define MESSAGING_VERSION 1
|
||||
|
@ -46,7 +46,7 @@ OBJ_FILES = \
|
||||
# Start MODULE registry_rpc
|
||||
[MODULE::registry_rpc]
|
||||
INIT_FUNCTION = registry_rpc_init
|
||||
NOPROTO = NO
|
||||
PRIVATE_PROTO_HEADER = reg_backend_rpc.h
|
||||
OUTPUT_TYPE = MERGEDOBJ
|
||||
SUBSYSTEM = REGISTRY
|
||||
OBJ_FILES = \
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
#include "includes.h"
|
||||
#include "lib/registry/registry.h"
|
||||
#include "lib/registry/reg_backend_rpc.h"
|
||||
#include "lib/cmdline/popt_common.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "includes.h"
|
||||
#include "lib/registry/registry.h"
|
||||
#include "lib/cmdline/popt_common.h"
|
||||
#include "lib/registry/reg_backend_rpc.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "includes.h"
|
||||
#include "lib/registry/registry.h"
|
||||
#include "lib/cmdline/popt_common.h"
|
||||
#include "lib/registry/reg_backend_rpc.h"
|
||||
#include "system/time.h"
|
||||
|
||||
/*
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
#include "includes.h"
|
||||
#include "lib/registry/registry.h"
|
||||
#include "lib/registry/reg_backend_rpc.h"
|
||||
#include "lib/cmdline/popt_common.h"
|
||||
|
||||
static void print_tree(int l, struct registry_key *p, int fullpath, int novals)
|
||||
|
@ -3,7 +3,7 @@ MAJOR_VERSION = 0
|
||||
MINOR_VERSION = 0
|
||||
RELEASE_VERSION = 1
|
||||
DESCRIPTION = Generic utility functions
|
||||
PRIVATE_PROTO_HEADER = util_proto.h
|
||||
PUBLIC_PROTO_HEADER = util_proto.h
|
||||
PUBLIC_HEADERS = util.h \
|
||||
byteorder.h \
|
||||
debug.h \
|
||||
@ -39,7 +39,9 @@ REQUIRED_SUBSYSTEMS = \
|
||||
LIBLDB
|
||||
|
||||
[SUBSYSTEM::PIDFILE]
|
||||
PRIVATE_PROTO_HEADER = pidfile.h
|
||||
OBJ_FILES = pidfile.o
|
||||
|
||||
[SUBSYSTEM::UNIX_PRIVS]
|
||||
PRIVATE_PROTO_HEADER = unix_privs.h
|
||||
OBJ_FILES = unix_privs.o
|
||||
|
@ -13,6 +13,7 @@ OBJ_FILES = util/asn1.o \
|
||||
util/smbdes.o
|
||||
|
||||
[SUBSYSTEM::LIBCLI_LSA]
|
||||
PRIVATE_PROTO_HEADER = util/clilsa.h
|
||||
OBJ_FILES = util/clilsa.o
|
||||
REQUIRED_SUBSYSTEMS = RPC_NDR_LSA
|
||||
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "includes.h"
|
||||
#include "vfs_posix.h"
|
||||
#include "util/unix_privs.h"
|
||||
|
||||
/*
|
||||
pull a xattr as a blob
|
||||
|
@ -59,7 +59,6 @@ REQUIRED_SUBSYSTEMS = \
|
||||
# Start BINARY SMBSCRIPT
|
||||
[BINARY::smbscript]
|
||||
INSTALLDIR = BINDIR
|
||||
NOPROTO = NO
|
||||
OBJ_FILES = \
|
||||
smbscript.o
|
||||
REQUIRED_SUBSYSTEMS = EJS LIBBASIC SMBCALLS CONFIG
|
||||
|
@ -37,6 +37,7 @@
|
||||
#include "smbd/process_model.h"
|
||||
#include "smbd/service.h"
|
||||
#include "passdb/secrets.h"
|
||||
#include "util/pidfile.h"
|
||||
|
||||
/*
|
||||
recursively delete a directory tree
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "torture/torture.h"
|
||||
#include "libcli/raw/libcliraw.h"
|
||||
#include "libcli/libcli.h"
|
||||
#include "libcli/util/clilsa.h"
|
||||
#include "libcli/security/proto.h"
|
||||
|
||||
#define BASEDIR "\\testsd"
|
||||
|
Loading…
Reference in New Issue
Block a user