summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorWushin <pasekei@gmail.com>2015-06-19 21:52:58 -0500
committerWushin <pasekei@gmail.com>2015-06-19 21:52:58 -0500
commit079e8815d62e052d654c4263f75cf7007f1cd4c3 (patch)
tree62597b8dada337e1e86ed16e35cf2241fa0732fc /configure
parent9d3e5757b1598028be49d4565712002593ae77ed (diff)
parent097e924102d7f9de5fed7c7bc537e378b72a6340 (diff)
downloadtmwa-079e8815d62e052d654c4263f75cf7007f1cd4c3.tar.gz
tmwa-079e8815d62e052d654c4263f75cf7007f1cd4c3.tar.bz2
tmwa-079e8815d62e052d654c4263f75cf7007f1cd4c3.tar.xz
tmwa-079e8815d62e052d654c4263f75cf7007f1cd4c3.zip
Merge pull request #73 from wushin/travis-update
Update Travis for gcc 5
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index dc67d49..2693f32 100755
--- a/configure
+++ b/configure
@@ -50,7 +50,7 @@ class Configuration(Cxx, Install, ConfigHash, Templates):
home = os.path.expanduser('~')
self.add_alias('--user', ['--prefix=%s' % home, '--enable-rpath=relative'],
help='alias for --prefix=$HOME --enable-rpath=relative', hidden=False)
- self.add_alias('--dev', ['--user', '--enable-warnings', '--enable-abi6'],
+ self.add_alias('--dev', ['--user', '--enable-warnings', '--enable-abi'],
help=None, hidden=False)
def paths(self):
@@ -66,8 +66,8 @@ class Configuration(Cxx, Install, ConfigHash, Templates):
self.add_bool_feature('warnings', init='no',
check=lambda build, ENABLE_WARNINGS: None,
help='Enable warnings (for development)')
- self.add_bool_feature('abi6', init='no',
- check=lambda build, ENABLE_ABI6: None,
+ self.add_bool_feature('abi', init='no',
+ check=lambda build, ENABLE_ABI: None,
help='Force a nonbuggy gcc ABI (for development)')
self.add_bool_feature('cygwin-hacks', init='no',
check=lambda build, ENABLE_CYGWIN_HACKS: None,