summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-16 19:43:03 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-16 19:43:03 +0100
commitaa1ea57fbbfe775168dacceb707a1dc80dc02dae (patch)
tree190af7a8ea03d9a0ea1fade70676d163c2f060f2 /wscript
parentd2149e1d5f1acf35fd96081c36a2f7ff6ca2f095 (diff)
Fix ADSCP warnings.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 0e407295..5473e9e9 100644
--- a/wscript
+++ b/wscript
@@ -6,7 +6,7 @@ def options(opt):
def configure(conf):
conf.load('compiler_cxx')
- conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-O2', '-D_FILE_OFFSET_BITS=64'])
+ conf.env.append_value('CXXFLAGS', ['-Wall', '-Werror', '-Wextra', '-O2', '-D_FILE_OFFSET_BITS=64'])
conf.env.append_value('CXXFLAGS', ['-DLIBDCP_VERSION="%s"' % VERSION])
conf.check_cfg(package = 'openssl', args = '--cflags --libs', uselib_store = 'OPENSSL', mandatory = True)