summaryrefslogtreecommitdiffstats
path: root/lib/tdb/wscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-21 16:17:08 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-21 16:17:08 +1000
commit06fa4c8ebcd5a3e4ef5c9d9a3b3d9516d3b94ce7 (patch)
treea13ee8ea7ba58d668faade4f7b0a9f327c5fc19f /lib/tdb/wscript
parentab2555faac253bdea46540aa1251977c46b02f35 (diff)
downloadsamba-06fa4c8ebcd5a3e4ef5c9d9a3b3d9516d3b94ce7.tar.gz
samba-06fa4c8ebcd5a3e4ef5c9d9a3b3d9516d3b94ce7.tar.xz
samba-06fa4c8ebcd5a3e4ef5c9d9a3b3d9516d3b94ce7.zip
build: make python development headers not mandatory in standalone libs
This needed an update to the python tool in waf thanks to Kai for spotting this
Diffstat (limited to 'lib/tdb/wscript')
-rw-r--r--lib/tdb/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript
index 899fe794819..70eb8cf5d05 100644
--- a/lib/tdb/wscript
+++ b/lib/tdb/wscript
@@ -46,7 +46,7 @@ def configure(conf):
# also disable if we don't have the python libs installed
conf.check_tool('python')
conf.check_python_version((2,4,2))
- conf.check_python_headers()
+ conf.check_python_headers(mandatory=False)
if not conf.env.HAVE_PYTHON_H:
Logs.warn('Disabling pytdb as python devel libs not found')
conf.env.disable_python = True