]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: remove openssl dependency from repart
authorLuca Boccassi <luca.boccassi@microsoft.com>
Sun, 5 Dec 2021 13:42:38 +0000 (13:42 +0000)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 6 Dec 2021 07:09:45 +0000 (16:09 +0900)
No longer needed since ade99252e2cdd9eeff78566789008996d27e4dc0

meson.build

index 1230e7ff33116dd472f0a1074a6bb9b14b63010a..60ed4d454e0060c7cb5a741ff4c12b54ea219a5e 100644 (file)
@@ -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)