1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s4-waf: only enable the python uuid module if python <= 2.4

This commit is contained in:
Andrew Tridgell 2010-04-09 21:24:59 +10:00
parent a10f024083
commit 92a051ef2f

View File

@ -17,7 +17,8 @@ bld.SAMBA_PYTHON('PYTALLOC',
bld.SAMBA_PYTHON('python_uuid',
source='uuidmodule.c',
deps='LIBNDR',
realname='uuid.so'
realname='uuid.so',
enabled = float(bld.env.PYTHON_VERSION) <= 2.4
)