diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-08-06 17:54:20 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-08-06 17:54:20 -0700 |
commit | 3a4b4ceabb509770ea37e0f9b372126ffcebed75 (patch) | |
tree | 21ff61835a181ec300bcfbc9de2366381c23d3af /configure | |
parent | fb1e500e572774131d0891018332fc625b6a4c52 (diff) | |
download | tmwa-3a4b4ceabb509770ea37e0f9b372126ffcebed75.tar.gz tmwa-3a4b4ceabb509770ea37e0f9b372126ffcebed75.tar.bz2 tmwa-3a4b4ceabb509770ea37e0f9b372126ffcebed75.tar.xz tmwa-3a4b4ceabb509770ea37e0f9b372126ffcebed75.zip |
Update attoconf
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -24,13 +24,14 @@ import subprocess import sys from attoconf.version import require_version -require_version(0, 3) +require_version(0, 5) from attoconf.classy import add_slots from attoconf.lib.c import Cxx from attoconf.lib.lex import Flex from attoconf.lib.yacc import Bison from attoconf.lib.install import Install +from attoconf.lib.config_hash import ConfigHash from attoconf.lib.make import Make from attoconf.types import enum @@ -42,7 +43,7 @@ def get_version(srcdir): @add_slots -class Configuration(Cxx, Flex, Bison, Install, Make): +class Configuration(Cxx, Flex, Bison, Install, ConfigHash, Make): def general(self): super(Configuration, self).general() home = os.path.expanduser('~') |