aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-07-25 17:39:19 +0100
committerIan Campbell <ian.campbell@citrix.com>2012-07-25 17:39:19 +0100
commit866133571efffca388e098f9c9c075c8a8177216 (patch)
tree1dc3f2d6c781a1cd554bab9a3b91603850f44657
parentf0281d6a7ac52c0d4e90f4186c6dd42dcddb893f (diff)
downloadxen-866133571efffca388e098f9c9c075c8a8177216.tar.gz
xen-866133571efffca388e098f9c9c075c8a8177216.tar.bz2
xen-866133571efffca388e098f9c9c075c8a8177216.zip
python: disable libxl bindings
They are rather incomplete and have no users or maintainer. Many of the functions which do exsit raise a NotImplemented exception. Disable them so that users of the 4.2 release aren't confused into trying to use them. This only does the minimal to disable them and makes it easy to locally reenable if anyone wants to hack these into shape in the future. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
-rw-r--r--tools/python/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/python/setup.py b/tools/python/setup.py
index 1708721d00..42a70fc8d3 100644
--- a/tools/python/setup.py
+++ b/tools/python/setup.py
@@ -88,7 +88,8 @@ xl = Extension("xl",
sources = [ "xen/lowlevel/xl/xl.c", "xen/lowlevel/xl/_pyxl_types.c" ])
plat = os.uname()[0]
-modules = [ xc, xs, ptsname, flask, xl ]
+modules = [ xc, xs, ptsname, flask ]
+#modules.extend([ xl ])
if plat == 'SunOS':
modules.extend([ scf, process ])
if plat == 'Linux':