s4-waf: mark the wscript files as python so vim/emacs knows how to highlight them
[kai/samba-autobuild/.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()