meson.build: require Meson 0.49.0
Meson 0.49.0 adds native support for `libgcrypt-config` which is necessary for detecting libgcrypt dependencies, as the latest version 1.8.4 of libgcrypt does not provide a .pc file.
This commit is contained in:
parent
b63c1a2144
commit
c66389a453
1
NEWS
1
NEWS
|
@ -1,4 +1,5 @@
|
||||||
ver 0.21.7 (not yet released)
|
ver 0.21.7 (not yet released)
|
||||||
|
* require Meson 0.49.0 for native libgcrypt-config support
|
||||||
|
|
||||||
ver 0.21.6 (2019/03/17)
|
ver 0.21.6 (2019/03/17)
|
||||||
* protocol
|
* protocol
|
||||||
|
|
|
@ -54,7 +54,7 @@ Download the source tarball from the `MPD home page <https://musicpd.org>`_ and
|
||||||
In any case, you need:
|
In any case, you need:
|
||||||
|
|
||||||
* a C++14 compiler (e.g. gcc 6.0 or clang 3.9)
|
* a C++14 compiler (e.g. gcc 6.0 or clang 3.9)
|
||||||
* `Meson 0.47.2 <http://mesonbuild.com/>`__ and `Ninja
|
* `Meson 0.49.0 <http://mesonbuild.com/>`__ and `Ninja
|
||||||
<https://ninja-build.org/>`__
|
<https://ninja-build.org/>`__
|
||||||
* Boost 1.58
|
* Boost 1.58
|
||||||
* pkg-config
|
* pkg-config
|
||||||
|
|
|
@ -2,7 +2,7 @@ project(
|
||||||
'mpd',
|
'mpd',
|
||||||
['c', 'cpp'],
|
['c', 'cpp'],
|
||||||
version: '0.21.7',
|
version: '0.21.7',
|
||||||
meson_version: '>= 0.47.2',
|
meson_version: '>= 0.49.0',
|
||||||
default_options: [
|
default_options: [
|
||||||
'c_std=c99',
|
'c_std=c99',
|
||||||
'cpp_std=c++14'
|
'cpp_std=c++14'
|
||||||
|
|
Loading…
Reference in New Issue