mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
11 lines
328 B
Python
11 lines
328 B
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()
|