diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-01-13 11:28:34 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-01-13 11:28:34 -0500 |
commit | d343b62dbdd1f39ef6ae47af8f6d53220752cb74 (patch) | |
tree | 6c4c52a0e36866487a25668d205cc93866d8695d /sys-apps/systemd/files | |
parent | sci-chemistry/MDAnalysis: add py 3.10 (diff) | |
download | gentoo-d343b62dbdd1f39ef6ae47af8f6d53220752cb74.tar.gz gentoo-d343b62dbdd1f39ef6ae47af8f6d53220752cb74.tar.bz2 gentoo-d343b62dbdd1f39ef6ae47af8f6d53220752cb74.zip |
sys-apps/systemd: drop 249.6-r1, 249.7, 249.7-r1
Bug: https://bugs.gentoo.org/830967
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-apps/systemd/files')
-rw-r--r-- | sys-apps/systemd/files/250-fix-openssl.patch | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/sys-apps/systemd/files/250-fix-openssl.patch b/sys-apps/systemd/files/250-fix-openssl.patch deleted file mode 100644 index 520ba0b66427..000000000000 --- a/sys-apps/systemd/files/250-fix-openssl.patch +++ /dev/null @@ -1,102 +0,0 @@ -From 9bcf483b117b23ae25bf4a5d39ddc3eade8659a6 Mon Sep 17 00:00:00 2001 -From: Yu Watanabe <watanabe.yu+github@gmail.com> -Date: Fri, 24 Dec 2021 10:06:13 +0900 -Subject: [PATCH] meson: fix build with -Dcryptolib=openssl - -Ddns-over-tls=false - -Previously, when -Ddns-over-tls=false, libopenssl was missing in the -dependency of resolved. -Also, this drops libgpg_error when it is not necessary. - -Replaces #21878. ---- - meson.build | 3 +-- - src/resolve/meson.build | 9 +-------- - 2 files changed, 2 insertions(+), 10 deletions(-) - -diff --git a/meson.build b/meson.build -index c0cbadecb123..0b7c1918ad4c 100644 ---- a/meson.build -+++ b/meson.build -@@ -1474,7 +1474,7 @@ conf.set10('PREFER_OPENSSL', - opt == 'openssl' or (opt == 'auto' and conf.get('HAVE_OPENSSL') == 1 and conf.get('HAVE_GCRYPT') == 0)) - conf.set10('HAVE_OPENSSL_OR_GCRYPT', - conf.get('HAVE_OPENSSL') == 1 or conf.get('HAVE_GCRYPT') == 1) --lib_openssl_or_gcrypt = conf.get('PREFER_OPENSSL') == 1 ? libopenssl : libgcrypt -+lib_openssl_or_gcrypt = conf.get('PREFER_OPENSSL') == 1 ? [libopenssl] : [libgcrypt, libgpg_error] - - dns_over_tls = get_option('dns-over-tls') - if dns_over_tls != 'false' -@@ -2200,7 +2200,6 @@ if conf.get('ENABLE_RESOLVE') == 1 - libsystemd_resolve_core], - dependencies : [threads, - lib_openssl_or_gcrypt, -- libgpg_error, - libm, - libidn], - install_rpath : rootlibexecdir, -diff --git a/src/resolve/meson.build b/src/resolve/meson.build -index 0580fbeec625..2cdf24b1cbef 100644 ---- a/src/resolve/meson.build -+++ b/src/resolve/meson.build -@@ -135,7 +135,7 @@ systemd_resolved_sources += custom_target( - output : 'resolved-dnssd-gperf.c', - command : [gperf, '@INPUT@', '--output-file', '@OUTPUT@']) - --systemd_resolved_dependencies = [threads, libgpg_error, libm] -+systemd_resolved_dependencies = [threads, libm] + [lib_openssl_or_gcrypt] - if conf.get('ENABLE_DNS_OVER_TLS') == 1 - if conf.get('DNS_OVER_TLS_USE_GNUTLS') == 1 - systemd_resolved_sources += files( -@@ -178,14 +178,12 @@ tests += [ - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm]], - - [['src/resolve/test-dns-packet.c'], - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm]], - - [['src/resolve/test-resolved-etc-hosts.c', -@@ -194,21 +192,18 @@ tests += [ - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm]], - - [['src/resolve/test-resolved-packet.c'], - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm]], - - [['src/resolve/test-dnssec.c'], - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm], - [], 'HAVE_OPENSSL_OR_GCRYPT'], - -@@ -216,7 +211,6 @@ tests += [ - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm], - [], '', 'manual'], - ] -@@ -226,6 +220,5 @@ fuzzers += [ - [libsystemd_resolve_core, - libshared], - [lib_openssl_or_gcrypt, -- libgpg_error, - libm]], - ] |