diff options
author | Thiago Macieira <thiago.macieira@intel.com> | 2018-09-24 13:03:02 -0700 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-09-25 10:58:09 +0200 |
commit | 044c2c7a2b322b6561d7e3cc5a48a548fee887f9 (patch) | |
tree | 521c021af46a95370a79a533b3c7a66194617c35 /meson.build | |
parent | 4295fd9e82d375d60c5f5957a5e2c80e5816b4ed (diff) | |
download | systemd-044c2c7a2b322b6561d7e3cc5a48a548fee887f9.tar.gz systemd-044c2c7a2b322b6561d7e3cc5a48a548fee887f9.tar.bz2 systemd-044c2c7a2b322b6561d7e3cc5a48a548fee887f9.zip |
Make bzip2 an optional dependency for systemd-importd
Yes, there are still a lot of users of bzip2, but it's fallen out of
favour after LZMA/xz, which can compress a lot more and often
decompresses faster than bzip2 too.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meson.build b/meson.build index a503e3bf00..c29f622143 100644 --- a/meson.build +++ b/meson.build @@ -1200,7 +1200,6 @@ want_importd = get_option('importd') if want_importd != 'false' have = (conf.get('HAVE_LIBCURL') == 1 and conf.get('HAVE_ZLIB') == 1 and - conf.get('HAVE_BZIP2') == 1 and conf.get('HAVE_XZ') == 1 and conf.get('HAVE_GCRYPT') == 1) if want_importd == 'true' and not have |