summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-01 13:46:41 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-01 21:32:21 +0100
commit1274b68651164289ad837c07364d70d101d87c51 (patch)
treeb66d952d206e373e5740c1b9eee40e19455a51e4 /cscript
parent68a966aef6e10343afd6b46bc5147f8956b8293c (diff)
std=c++11 for Debian Unstable.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/cscript b/cscript
index 6ee7f7eea..b6ff8612a 100644
--- a/cscript
+++ b/cscript
@@ -269,6 +269,8 @@ def configure_options(target):
opt += ' --static-boost --static-xmlpp'
elif target.version == '7':
opt += ' --workaround-gssapi --static-xmlpp'
+ if target.distro == 'debian' and target.version == 'unstable':
+ target.append_with_space('CXXFLAGS', '-std=c++11')
return opt