Fix LV2 state:loadDefaultState
[ardour.git] / wscript
diff --git a/wscript b/wscript
index 1933c3af66df9d2099d7a05243607e90f802f9f6..da86736a3d6c3e39fac97bc22bc1598515c2740a 100644 (file)
--- a/wscript
+++ b/wscript
@@ -383,6 +383,17 @@ int main() { return 0; }''',
 
     autowaf.set_basic_compiler_flags (conf,flags_dict)
 
+    #
+    # the transition table for the libardour transport state machine
+    # is larger than the default that is hard-coded in boost::mpl.
+    # These need to be defined before any boost headers are used,
+    # and just about the only way to be sure that is true is to define
+    # them on the "command line" here.
+    #
+    cxx_flags.append ('-DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS')
+    cxx_flags.append ('-DBOOST_MPL_LIMIT_VECTOR_SIZE=30')
+    cxx_flags.append ('-DBOOST_MPL_LIMIT_MAP_SIZE=30')
+    
     if conf.options.asan:
         conf.check_cxx(cxxflags=["-fsanitize=address", "-fno-omit-frame-pointer"], linkflags=["-fsanitize=address"])
         cxx_flags.append('-fsanitize=address')