1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

utils:libgpo: re-add libgpo as library, it should not be part of gpext

It was initially removed in 78fd02cf31dfe72d596030f342aebefba1e72263 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>
This commit is contained in:
Günther Deschner 2018-06-08 16:13:22 +02:00 committed by Bjoern Jacke
parent 7abf1d0339
commit 7d42029ff7
2 changed files with 12 additions and 5 deletions

View File

@ -1,10 +1,17 @@
#!/usr/bin/env python #!/usr/bin/env python
bld.SAMBA3_LIBRARY('gpext', LIBGPO_SRC = '''gpo_ldap.c gpo_ini.c gpo_util.c gpo_fetch.c gpo_filesync.c
source='''gpext/gpext.c gpo_util.c gpo_ldap.c gpo_ini.c gpo_sec.c gpo_reg.c gpext/gpext.c'''
gpo_fetch.c gpo_filesync.c
gpo_sec.c gpo_reg.c''', bld.SAMBA3_LIBRARY('gpo',
source='${LIBGPO_SRC}',
deps='talloc ads TOKEN_UTIL auth', 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) private_library=True)
for env in bld.gen_python_environments(): for env in bld.gen_python_environments():

View File

@ -238,7 +238,7 @@ bld.SAMBA3_BINARY('net',
KRBCLIENT KRBCLIENT
ndr-standard ndr-standard
msrpc3 msrpc3
gpext gpo
ads ads
smbd_base smbd_base
LIBADS_SERVER LIBADS_SERVER