mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
13 lines
351 B
Python
13 lines
351 B
Python
#!/usr/bin/env python
|
|
|
|
def set_options(opt):
|
|
# enable options related to building python extensions
|
|
opt.tool_options('python') # options for disabling pyc or pyo compilation
|
|
|
|
|
|
def configure(conf):
|
|
# enable tool to build python extensions
|
|
conf.check_tool('python')
|
|
conf.check_python_version((2,4,2))
|
|
conf.check_python_headers()
|