mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
2ddf89a2bc
System MIT krb5 build also enabled by specifying --without-ad-dc When --with-system-mitkrb5 (or --withou-ad-dc) option is passed to top level configure in WAF build we are trying to detect and use system-wide MIT krb5 libraries. As result, Samba 4 DC functionality will be disabled due to the fact that it is currently impossible to implement embedded KDC server with MIT krb5. Thus, --with-system-mitkrb5/--without-ad-dc build will only produce * Samba 4 client libraries and their Python bindings * Samba 3 server (smbd, nmbd, winbindd from source3/) * Samba 3 client libraries In addition, Samba 4 DC server-specific tests will not be compiled into smbtorture. This in particular affects spoolss_win, spoolss_notify, and remote_pac rpc tests.
51 lines
1.2 KiB
Python
Executable File
51 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('gensec_util',
|
|
source='socket.c gensec_tstream.c',
|
|
deps='tevent-util tevent samba-util LIBTSOCKET',
|
|
autoproto='gensec_proto.h')
|
|
|
|
bld.SAMBA_MODULE('gensec_krb5',
|
|
source='gensec_krb5.c gensec_krb5_util.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_krb5_init',
|
|
deps='samba-credentials authkrb5 com_err gensec_util',
|
|
internal_module=False,
|
|
enabled=bld.AD_DC_BUILD_IS_ENABLED()
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('gensec_gssapi',
|
|
source='gensec_gssapi.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_gssapi_init',
|
|
deps='gssapi samba-credentials authkrb5 com_err gensec_util'
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('cyrus_sasl',
|
|
source='cyrus_sasl.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_sasl_init',
|
|
deps='samba-credentials sasl2',
|
|
enabled=bld.CONFIG_SET('HAVE_SASL')
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('gensec_schannel',
|
|
source='schannel.c',
|
|
subsystem='gensec',
|
|
deps='COMMON_SCHANNEL NDR_SCHANNEL samba-credentials ndr auth_session',
|
|
internal_module=True,
|
|
autoproto='schannel_proto.h',
|
|
init_function='gensec_schannel_init'
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('pygensec',
|
|
source='pygensec.c',
|
|
deps='gensec pytalloc-util pyparam_util',
|
|
realname='samba/gensec.so'
|
|
)
|
|
|