mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
7d42029ff7
It was initially removed in 78fd02cf31
but
is needed by the inf file parsing.
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Bjoern Jacke <bjacke@samba.org>
23 lines
873 B
Python
23 lines
873 B
Python
#!/usr/bin/env python
|
|
|
|
LIBGPO_SRC = '''gpo_ldap.c gpo_ini.c gpo_util.c gpo_fetch.c gpo_filesync.c
|
|
gpo_sec.c gpo_reg.c gpext/gpext.c'''
|
|
|
|
bld.SAMBA3_LIBRARY('gpo',
|
|
source='${LIBGPO_SRC}',
|
|
deps='talloc ads TOKEN_UTIL auth',
|
|
vars=locals(),
|
|
private_library=True)
|
|
|
|
bld.SAMBA3_LIBRARY('gpext',
|
|
source='''gpext/gpext.c''',
|
|
deps='talloc ads TOKEN_UTIL auth gpo',
|
|
private_library=True)
|
|
|
|
for env in bld.gen_python_environments():
|
|
pyparam_util = bld.pyembed_libname('pyparam_util')
|
|
pyrpc_util = bld.pyembed_libname('pyrpc_util')
|
|
bld.SAMBA3_PYTHON('python_samba_libgpo', 'pygpo.c',
|
|
deps='%s gpext talloc ads TOKEN_UTIL auth %s' % (pyparam_util, pyrpc_util),
|
|
realname='samba/gpo.so')
|