From e469e1f8d19408e83d30aa1cfab06dd133304ad8 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Tue, 16 Oct 2018 06:06:19 -0700 Subject: [PATCH] Bump minimum Meson version According to user reports (https://github.com/libfuse/libfuse/pull/300), we need at least version 0.42. --- README.md | 6 +++--- meson.build | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80fc1b6..5209b3a 100644 --- 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 .. diff --git a/meson.build b/meson.build index 7df434b..07c05c5 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfuse3', 'c', version: '3.2.6', - meson_version: '>= 0.40.1', + meson_version: '>= 0.42', default_options: [ 'buildtype=debugoptimized' ])