I don't think we need BOOST_NO_CXX11_SCOPED_ENUMS any more.
authorCarl Hetherington <cth@carlh.net>
Wed, 20 Jan 2021 22:34:37 +0000 (23:34 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 20 Jan 2021 22:34:37 +0000 (23:34 +0100)
wscript

diff --git a/wscript b/wscript
index c39f65ce6108f4834b29cc19bf3554fefdd4af10..41f996a755a14e32e50bb58c34d5ed676231754e 100644 (file)
--- a/wscript
+++ b/wscript
@@ -66,7 +66,7 @@ def options(opt):
 def configure(conf):
     conf.load('compiler_cxx')
     conf.load('clang_compilation_database', tooldir=['waf-tools'])
-    conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS', '-std=c++11', '-DBOOST_NO_CXX11_SCOPED_ENUMS'])
+    conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS', '-std=c++11'])
     gcc = conf.env['CC_VERSION']
     if int(gcc[0]) >= 4 and int(gcc[1]) > 1:
         conf.env.append_value('CXXFLAGS', ['-Wno-maybe-uninitialized'])