From c3c71f3f6a6164a59568cb3265fc10af4f8fa04c Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Wed, 7 Sep 2005 18:37:55 +0000 Subject: g/c unused xu extension. Signed-off-by: Christian Limpach --- tools/python/setup.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'tools/python/setup.py') diff --git a/tools/python/setup.py b/tools/python/setup.py index 82ff6e1662..9ef25a2f99 100644 --- a/tools/python/setup.py +++ b/tools/python/setup.py @@ -7,10 +7,8 @@ XEN_ROOT = "../.." extra_compile_args = [ "-fno-strict-aliasing", "-Wall", "-Werror" ] -include_dirs = [ XEN_ROOT + "/tools/python/xen/lowlevel/xu", - XEN_ROOT + "/tools/libxc", +include_dirs = [ XEN_ROOT + "/tools/libxc", XEN_ROOT + "/tools/xenstore", - XEN_ROOT + "/tools/xcs", ] library_dirs = [ XEN_ROOT + "/tools/libxc", @@ -26,13 +24,6 @@ xc = Extension("xc", libraries = libraries, sources = [ "xen/lowlevel/xc/xc.c" ]) -xu = Extension("xu", - extra_compile_args = extra_compile_args, - include_dirs = include_dirs + [ "xen/lowlevel/xu" ], - library_dirs = library_dirs, - libraries = libraries, - sources = [ "xen/lowlevel/xu/xu.c" ]) - xs = Extension("xs", extra_compile_args = extra_compile_args, include_dirs = include_dirs + [ "xen/lowlevel/xs" ], @@ -51,10 +42,10 @@ setup(name = 'xen', 'xen.xend.xenstore', 'xen.xm', 'xen.web', - 'xen.sv' + 'xen.sv' ], ext_package = "xen.lowlevel", - ext_modules = [ xc, xu, xs ] + ext_modules = [ xc, xs ] ) os.chdir('logging') -- cgit v1.2.3