1
0
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:
Jelmer Vernooij
2010-10-10 04:25:50 +02:00
parent 5de1274d87
commit c15e919a09
11 changed files with 36 additions and 36 deletions

View File

@ -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',