mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBPYTHON',
|
|
source='modules.c',
|
|
public_deps='EXT_LIB_PYTHON',
|
|
init_function_sentinal='{NULL,NULL}',
|
|
needs_python=True,
|
|
deps='talloc',
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('PYTALLOC',
|
|
source='../../../lib/talloc/pytalloc.c',
|
|
public_deps='EXT_LIB_PYTHON talloc',
|
|
needs_python=True,
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('python_uuid',
|
|
source='uuidmodule.c',
|
|
deps='LIBNDR',
|
|
realname='uuid.so',
|
|
enabled = float(bld.env.PYTHON_VERSION) <= 2.4
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('python_glue',
|
|
source='pyglue.c',
|
|
deps='pyparam_util LIBSAMBA-UTIL LIBNETIF PYTALLOC',
|
|
realname='samba/_glue.so'
|
|
)
|
|
|
|
|
|
# create a dummy subsystem for EXT_LIB_PYTHON
|
|
bld.SAMBA_SUBSYSTEM('EXT_LIB_PYTHON', '')
|
|
|
|
|
|
# install out various python scripts for use by make test
|
|
bld.SAMBA_SCRIPT('samba_python',
|
|
pattern='samba/**/*.py',
|
|
installdir='python')
|
|
|
|
bld.INSTALL_WILDCARD('${PYTHONDIR}', 'samba/**/*.py', flat=False)
|