From: Simon McVittie Date: Wed, 14 Feb 2018 14:28:53 +0000 (+0000) Subject: Only require FUSE if we're still building the document portal X-Git-Tag: archive/raspbian/0.11.5-1+rpi1~1^2^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bdc8dc483e5b372a76bd2bbc254d9db94b6617d8;p=flatpak.git Only require FUSE if we're still building the document portal Signed-off-by: Simon McVittie Gbp-Pq: Name Only-require-FUSE-if-we-re-still-building-the-document-po.patch --- diff --git a/configure.ac b/configure.ac index 5e30096..1905236 100644 --- a/configure.ac +++ b/configure.ac @@ -243,7 +243,8 @@ AM_CONDITIONAL(ENABLE_DOCUMENT_PORTAL, test "x$enable_document_portal" = "xyes") PKG_CHECK_MODULES(OSTREE, [ostree-1 >= $OSTREE_REQS]) -PKG_CHECK_MODULES(FUSE, [fuse]) +AS_IF([test "x$enable_document_portal" = "xyes"], + [PKG_CHECK_MODULES(FUSE, [fuse])]) PKG_CHECK_MODULES(JSON, [json-glib-1.0])