From: Fred Morcos Date: Tue, 17 Oct 2023 18:11:08 +0000 (+0200) Subject: Meson: Boost: Define BOOST_CONTAINER_USE_STD_EXCEPTIONS X-Git-Tag: rec-5.1.0-alpha1~80^2~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93bd2931168cbf95a009191766ddcdfa5c1f2376;p=thirdparty%2Fpdns.git Meson: Boost: Define BOOST_CONTAINER_USE_STD_EXCEPTIONS --- diff --git a/meson/boost/meson.build b/meson/boost/meson.build index 00449143cc..772708c41f 100644 --- a/meson/boost/meson.build +++ b/meson/boost/meson.build @@ -3,5 +3,6 @@ dep_boost = dependency('boost', version: '>= 1.42', required: true) # with C++11. have_boost_1_48_0 = dep_boost.version().version_compare('>= 1.48.0') conf.set('HAVE_BOOST_GE_148', have_boost_1_48_0, description: 'Boost version >= 1.48.0') +conf.set('BOOST_CONTAINER_USE_STD_EXCEPTIONS', true, description: 'Boost use std exceptions') summary('Boost', dep_boost.found(), bool_yn: true, section: 'Boost') summary('Version', dep_boost.version(), section: 'Boost')