build: Cope with broken libiconv
[metze/samba/wip.git] / source4 / scripting / python / wscript
1 #!/usr/bin/env python
2
3 def set_options(opt):
4     # enable options related to building python extensions
5     opt.tool_options('python') # options for disabling pyc or pyo compilation
6
7
8 def configure(conf):
9     # enable tool to build python extensions
10     conf.check_tool('python')
11     conf.check_python_version((2,4,2))
12     conf.check_python_headers()