mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
a7c65958a1
This is the big switch to use samba-dcerpcd for the RPC services in source3/. It is a pretty big and unordered patch, but I don't see a good way to split this up into more manageable pieces without sacrificing bisectability even more. Probably I could cut out a few small ones, but a major architechtural switch like this will always be messy. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
def configure(conf):
|
|
return
|
|
|
|
def build(bld):
|
|
bld.SAMBA_BINARY('test_krb5samba',
|
|
source='test_krb5_samba.c',
|
|
deps='krb5samba cmocka',
|
|
for_selftest=True)
|
|
|
|
bld.SAMBA_BINARY('test_lib_util_modules',
|
|
source='test_lib_util_modules.c',
|
|
deps='''
|
|
samba-modules
|
|
cmocka
|
|
''',
|
|
for_selftest=True)
|
|
|
|
bld.SAMBA_BINARY('test_background_send',
|
|
source='test_background_send.c',
|
|
deps='''
|
|
samba3core
|
|
''',
|
|
for_selftest=True)
|
|
|
|
bld.SAMBA_MODULE('rpc_test_dummy_module',
|
|
source='rpc_test_dummy_module.c',
|
|
deps='ndr smbd_base RPC_SERVICE RPC_SOCK_HELPER',
|
|
subsystem='rpc',
|
|
allow_undefined_symbols=True,
|
|
init_function='',
|
|
internal_module=False,
|
|
install=False)
|