mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
s4-rpc_server: split out DCERPC_SHARE as a separate subsystem
this avoids a problem with -Wl,-no-undefined in the ntvfs layer Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
1748d10e47
commit
56640a8501
@ -24,6 +24,7 @@
|
||||
#include "libcli/raw/interfaces.h"
|
||||
#include "librpc/gen_ndr/srvsvc.h"
|
||||
#include "rpc_server/common/common.h"
|
||||
#include "rpc_server/common/share.h"
|
||||
#include "param/param.h"
|
||||
#include "ntvfs/ipc/ipc.h"
|
||||
#include "ntvfs/ipc/proto.h"
|
||||
|
@ -49,7 +49,7 @@ bld.SAMBA_MODULE('ntvfs_ipc',
|
||||
autoproto='ipc/proto.h',
|
||||
subsystem='ntvfs',
|
||||
init_function='ntvfs_ipc_init',
|
||||
deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi CREDENTIALS'
|
||||
deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi CREDENTIALS DCERPC_SHARE'
|
||||
)
|
||||
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "rpc_server/dcerpc_server.h"
|
||||
#include "librpc/gen_ndr/ndr_srvsvc.h"
|
||||
#include "rpc_server/common/common.h"
|
||||
#include "rpc_server/common/share.h"
|
||||
#include "auth/auth.h"
|
||||
#include "libcli/security/security.h"
|
||||
#include "system/time.h"
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "rpc_server/dcerpc_server.h"
|
||||
#include "librpc/gen_ndr/ndr_wkssvc.h"
|
||||
#include "rpc_server/common/common.h"
|
||||
#include "rpc_server/common/share.h"
|
||||
#include "param/param.h"
|
||||
|
||||
/*
|
||||
|
@ -1,11 +1,17 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('DCERPC_SHARE',
|
||||
source='common/server_info.c common/share_info.c',
|
||||
autoproto='common/share.h',
|
||||
deps='ldb'
|
||||
)
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('DCERPC_COMMON',
|
||||
source='common/server_info.c common/share_info.c common/forward.c',
|
||||
source='common/forward.c',
|
||||
autoproto='common/proto.h',
|
||||
public_headers='common/common.h',
|
||||
header_path='dcerpc_server',
|
||||
deps='ldb dcerpc_server'
|
||||
deps='ldb DCERPC_SHARE'
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user