From: Luca Boccassi Date: Sun, 5 Dec 2021 13:42:38 +0000 (+0000) Subject: meson: remove openssl dependency from repart X-Git-Tag: v250-rc1~80 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b12086e1fc54c8454efc30ded3ae8b30f159a4d;p=thirdparty%2Fsystemd.git meson: remove openssl dependency from repart No longer needed since ade99252e2cdd9eeff78566789008996d27e4dc0 --- diff --git a/meson.build b/meson.build index 1230e7ff331..60ed4d454e0 100644 --- a/meson.build +++ b/meson.build @@ -1526,8 +1526,7 @@ conf.set_quoted('DEFAULT_LLMNR_MODE_STR', default_llmnr) want_repart = get_option('repart') if want_repart != 'false' - have = (conf.get('HAVE_OPENSSL') == 1 and - conf.get('HAVE_LIBFDISK') == 1) + have = conf.get('HAVE_LIBFDISK') == 1 if want_repart == 'true' and not have error('repart support was requested, but dependencies are not available') endif @@ -2931,8 +2930,7 @@ if conf.get('ENABLE_REPART') == 1 link_with : [libshared], dependencies : [threads, libblkid, - libfdisk, - libopenssl], + libfdisk], install_rpath : rootlibexecdir, install : true, install_dir : rootbindir)