Bump minimum Meson version

According to user reports (https://github.com/libfuse/libfuse/pull/300),
we need at least version 0.42.
This commit is contained in:
Nikolaus Rath 2018-10-16 06:06:19 -07:00
parent e8bcd8461c
commit e469e1f8d1
2 changed files with 4 additions and 4 deletions

View File

@ -37,9 +37,9 @@ Installation
You can download libfuse from
https://github.com/libfuse/libfuse/releases. To build and install, we
recommend to use [Meson](http://mesonbuild.com/) (version 0.38 or
newer) and [Ninja](https://ninja-build.org). After extracting the
libfuse tarball, create a (temporary) build directory and run Meson:
recommend to use [Meson](http://mesonbuild.com/) and
[Ninja](https://ninja-build.org). After extracting the libfuse
tarball, create a (temporary) build directory and run Meson:
$ mkdir build; cd build
$ meson ..

View File

@ -1,5 +1,5 @@
project('libfuse3', 'c', version: '3.2.6',
meson_version: '>= 0.40.1',
meson_version: '>= 0.42',
default_options: [ 'buildtype=debugoptimized' ])