aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2020-10-27 20:05:41 +0100
committerKevin Wolf <kwolf@redhat.com>2020-12-11 17:52:39 +0100
commita484a7195761476dcf43b40437f4d5b8b32d9f2c (patch)
treeb4f6f59e96d4abc80b6bf702bdc9b8980257f7a3 /configure
parentc208b0ef968b108440b01a319b3699f1d330fbb1 (diff)
downloadqemu-a484a7195761476dcf43b40437f4d5b8b32d9f2c.zip
qemu-a484a7195761476dcf43b40437f4d5b8b32d9f2c.tar.gz
qemu-a484a7195761476dcf43b40437f4d5b8b32d9f2c.tar.bz2
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-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index 18c26e0..b2f96c0 100755
--- a/configure
+++ b/configure
@@ -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"