diff options
author | Max Kellermann <max@musicpd.org> | 2018-11-04 12:45:22 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-11-04 12:45:22 +0100 |
commit | 08e41e60e52d5013a3a1900cdcf25371693840ff (patch) | |
tree | daa10a2476092738e58262b853efe064ea8be5f0 | |
parent | 10ec478a9c79a222ed739efa9e1abc151ce3d56b (diff) |
meson.build: downgrade Boost 1.67 error to warning
Some Boost 1.67 packages apparently have a workaround for the bug, so
let them build MPD.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ ver 0.21.1 (not yet released) * fix build failure on Linux-PowerPC * fix build failure on FreeBSD * eliminate DLL dependencies on Windows -* refuse to build with buggy Boost version 1.67 +* add warning about buggy Boost version 1.67 * require Meson 0.47.2 because a Meson 0.47.1 bug breaks our build ver 0.21 (2018/10/31) diff --git a/meson.build b/meson.build index 7a747c18f..317284c00 100644 --- a/meson.build +++ b/meson.build @@ -175,7 +175,7 @@ boost_dep = dependency('boost', version: '>= 1.58') if boost_dep.version() == '1.67' # https://github.com/MusicPlayerDaemon/MPD/pull/384 # https://github.com/boostorg/lockfree/commit/12726cda009a855073b9bedbdce57b6ce7763da2 - error('Your Boost version 1.67 is known to be buggy, and the MPD build will fail. Please upgrade to Boost 1.68 or later.') + warning('Your Boost version 1.67 is known to be buggy, and the MPD build will fail. Please upgrade to Boost 1.68 or later.') endif sources = [ |