mirror of
https://github.com/samba-team/samba.git
synced 2025-02-15 05:57:49 +03:00
samba-policy requires samba-net which requires PROVISION, which is disabled when python isn't available. Signed-off-by: Ian Stakenvicius <axs@gentoo.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
18 lines
398 B
Python
18 lines
398 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('samba-policy',
|
|
source='gp_ldap.c gp_filesys.c gp_manage.c gp_ini.c',
|
|
pc_files='samba-policy.pc',
|
|
public_deps='ldb samba-net',
|
|
vnum='0.0.1',
|
|
pyembed=True,
|
|
public_headers='policy.h',
|
|
enabled=bld.PYTHON_BUILD_IS_ENABLED()
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('py_policy',
|
|
source='pypolicy.c',
|
|
public_deps='samba-policy pytalloc-util',
|
|
realname='samba/policy.so'
|
|
)
|