mirror of
https://github.com/samba-team/samba.git
synced 2024-12-29 11:21:54 +03:00
17 lines
338 B
Python
17 lines
338 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('policy',
|
|
source='gp_ldap.c gp_filesys.c gp_manage.c gp_ini.c',
|
|
pc_files='policy.pc',
|
|
public_deps='ldb LIBSAMBA-NET',
|
|
public_headers='policy.h',
|
|
vnum='0.0.1',
|
|
pyembed=True
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('py_policy',
|
|
source='pypolicy.c',
|
|
public_deps='policy PYTALLOC',
|
|
realname='samba/policy.so'
|
|
)
|