ia64/xen-unstable
changeset 15827:230000d3ef32
xend: Always build lowlevel security modules, as there are some
dependencies on these from with xend proper.
Signed-off-by: Keir Fraser <keir@xensource.com>
dependencies on these from with xend proper.
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kfraser@localhost.localdomain |
---|---|
date | Fri Aug 31 16:50:26 2007 +0100 (2007-08-31) |
parents | 7e79e7f01f3d |
children | 3b50a7e52ff2 |
files | tools/python/setup.py |
line diff
1.1 --- a/tools/python/setup.py Fri Aug 31 15:46:37 2007 +0100 1.2 +++ b/tools/python/setup.py Fri Aug 31 16:50:26 2007 +0100 1.3 @@ -59,15 +59,10 @@ ptsname = Extension("ptsname", 1.4 libraries = libraries, 1.5 sources = [ "ptsname/ptsname.c" ]) 1.6 1.7 -modules = [ xc, xs, ptsname ] 1.8 +modules = [ xc, xs, ptsname, acm, flask ] 1.9 if os.uname()[0] == 'SunOS': 1.10 modules.append(scf) 1.11 1.12 -if os.environ.get('XEN_SECURITY_MODULE') == 'acm': 1.13 - modules.append(acm) 1.14 -if os.environ.get('XEN_SECURITY_MODULE') == 'flask': 1.15 - modules.append(flask) 1.16 - 1.17 setup(name = 'xen', 1.18 version = '3.0', 1.19 description = 'Xen',