mirror of
https://github.com/samba-team/samba.git
synced 2025-07-02 20:59:09 +03:00
wafsamba: Clarify needs_python argument name, use pyembed/pyext where
applicable. Allow using both pyembed and pyext, to prevent unresolved symbols. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 10 03:54:01 UTC 2010 on sn-devel-104
This commit is contained in:
@ -1,19 +1,19 @@
|
||||
#!/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',
|
||||
source='modules.c',
|
||||
public_deps='EXT_LIB_PYTHON',
|
||||
init_function_sentinal='{NULL,NULL}',
|
||||
pyembed=True,
|
||||
deps='talloc',
|
||||
)
|
||||
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('PYTALLOC',
|
||||
source='../../../lib/talloc/pytalloc.c',
|
||||
public_deps='EXT_LIB_PYTHON talloc',
|
||||
needs_python=True,
|
||||
)
|
||||
source='../../../lib/talloc/pytalloc.c',
|
||||
public_deps='EXT_LIB_PYTHON talloc',
|
||||
pyembed=True,
|
||||
)
|
||||
|
||||
|
||||
bld.SAMBA_PYTHON('python_uuid',
|
||||
|
Reference in New Issue
Block a user