Bump minimum Meson version
authorNikolaus Rath <Nikolaus@rath.org>
Tue, 16 Oct 2018 13:06:19 +0000 (06:06 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Tue, 16 Oct 2018 13:06:19 +0000 (06:06 -0700)
According to user reports (https://github.com/libfuse/libfuse/pull/300),
we need at least version 0.42.

README.md
meson.build

index 80fc1b6edff4d7eddc07c488d2834406f873370a..5209b3ad5ccfa7115e6f0c0ae751abc5332be0c7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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 ..
index 7df434b7a1ada0cf549f010e52960e5285b3e857..07c05c57c0c250ace8a5bce2421fdce536223a5f 100644 (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' ])