diff options
author | Max Kellermann <max@musicpd.org> | 2018-11-04 11:54:40 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-11-04 11:54:40 +0100 |
commit | e3bc85d7bfde1452e1ed103d2367fe76769fc366 (patch) | |
tree | b53154854ea97992235bc43822a0047d3867ee2a /meson.build | |
parent | 6f242836e6ea5f9de303d4b0a0622d06580ea310 (diff) |
meson.build: require Meson 0.47.2
Meson 0.47.1 suffers from a bug which breaks linking the MPD
executable because the `-lpthread` flag is not propagated from our
`thread.a`.
See https://github.com/mesonbuild/meson/pull/3895
Closes #403
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index dc4142b8f..5d15133d5 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'mpd', ['c', 'cpp'], version: '0.21.1', - meson_version: '>= 0.47', + meson_version: '>= 0.47.2', default_options: [ 'c_std=c99', 'cpp_std=c++14' |