From 06fa4c8ebcd5a3e4ef5c9d9a3b3d9516d3b94ce7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 21 Apr 2010 16:17:08 +1000 Subject: 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 --- buildtools/bin/waf-svn | Bin 107837 -> 107839 bytes lib/tdb/wscript | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/bin/waf-svn b/buildtools/bin/waf-svn index 774fb71dcf..08b64be212 100755 Binary files a/buildtools/bin/waf-svn and b/buildtools/bin/waf-svn differ diff --git a/lib/tdb/wscript b/lib/tdb/wscript index 899fe79481..70eb8cf5d0 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 -- cgit