diff options
author | Max Reitz | 2020-10-27 20:05:41 +0100 |
---|---|---|
committer | Kevin Wolf | 2020-12-11 17:52:39 +0100 |
commit | a484a7195761476dcf43b40437f4d5b8b32d9f2c (patch) | |
tree | b4f6f59e96d4abc80b6bf702bdc9b8980257f7a3 /configure | |
parent | block/iscsi: Use lock guard macros (diff) | |
download | qemu-a484a7195761476dcf43b40437f4d5b8b32d9f2c.tar.gz qemu-a484a7195761476dcf43b40437f4d5b8b32d9f2c.tar.xz qemu-a484a7195761476dcf43b40437f4d5b8b32d9f2c.zip |
meson: Detect libfuse
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20201027190600.192171-2-mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -449,6 +449,7 @@ meson="" ninja="" skip_meson=no gettext="" +fuse="auto" bogus_os="no" malloc_trim="auto" @@ -1525,6 +1526,10 @@ for opt do ;; --disable-libdaxctl) libdaxctl=no ;; + --enable-fuse) fuse="enabled" + ;; + --disable-fuse) fuse="disabled" + ;; *) echo "ERROR: unknown option $opt" echo "Try '$0 --help' for more information" @@ -1850,6 +1855,7 @@ disabled with --disable-FEATURE, default is enabled if available: xkbcommon xkbcommon support rng-none dummy RNG, avoid using /dev/(u)random and getrandom() libdaxctl libdaxctl support + fuse FUSE block device export NOTE: The object files are built at the place where configure is launched EOF @@ -7014,6 +7020,7 @@ NINJA=$ninja $meson setup \ -Diconv=$iconv -Dcurses=$curses -Dlibudev=$libudev\ -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \ -Dvhost_user_blk_server=$vhost_user_blk_server \ + -Dfuse=$fuse \ $cross_arg \ "$PWD" "$source_path" |