summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2020-10-07 00:39:08 +0300
committerEd Tanous <ed@tanous.net>2020-10-07 00:42:52 +0300
commit309b0834262f69071c16f7389ba02f56747a9a23 (patch)
tree54372041eccf09366dc597d69431ec3009f0ad15
parent888880af0ec22bb50e262917bd5dab5d221d521c (diff)
downloadbmcweb-309b0834262f69071c16f7389ba02f56747a9a23.tar.xz
Allow newer versions of boost
Tested: Code builds as it did before. Trying to fix CI Signed-off-by: Ed Tanous <ed@tanous.net> Change-Id: If7135f9e9aeb222a0da0e42aadfcca789524c551
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index d38ecaaa44..fd18a411e0 100644
--- a/meson.build
+++ b/meson.build
@@ -289,7 +289,7 @@ else
)
endif
-boost = dependency('boost',version : '1.73.0', required : false)
+boost = dependency('boost',version : '>=1.73.0', required : false)
if not boost.found()
subproject('boost', required: false)
boost_inc = include_directories('subprojects/boost_1_73_0/', is_system:true)