diff options
author | lloyd <[email protected]> | 2010-04-09 14:04:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-04-09 14:04:43 +0000 |
commit | 6eec50d372143afcb3188f21d0991ace3e0d5e9e (patch) | |
tree | 6c003b2261de6e4bcb700ddb39fc6e631bb4735d /configure.py | |
parent | 143b5cb297a36b94c9d0e56e2d2145a7c55efde5 (diff) |
Remove TR1 testing; C++0x had what we need
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.py b/configure.py index 1e91a35e3..479511646 100755 --- a/configure.py +++ b/configure.py @@ -506,12 +506,6 @@ class ModuleInfo(object): def compatible_compiler(self, cc): return self.cc == [] or cc in self.cc - def tr1_ok(self, with_tr1): - if self.uses_tr1: - return with_tr1 in ['boost', 'system'] - else: - return True - def dependencies(self): # utils is an implicit dep (contains types, etc) deps = self.requires + ['utils'] @@ -1028,8 +1022,6 @@ def choose_modules_to_use(modules, archinfo, options): cannot_use_because(modname, 'incompatible OS') elif not module.compatible_compiler(options.compiler): cannot_use_because(modname, 'incompatible compiler') - elif not module.tr1_ok(options.with_tr1): - cannot_use_because(modname, 'missing TR1') else: if module.load_on == 'never': |