From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B3661138206 for ; Wed, 17 Jan 2018 12:07:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21437E0932; Wed, 17 Jan 2018 12:07:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02611E0932 for ; Wed, 17 Jan 2018 12:07:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE6F2335C38 for ; Wed, 17 Jan 2018 12:07:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 683CC1AF for ; Wed, 17 Jan 2018 12:07:48 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1516190864.53c3a74882acd60a384e2d98fd3081fc93beb663.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/multipath-tools/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/multipath-tools/files/multipath-tools-0.7.3-fix-build-without-systemd.patch X-VCS-Directories: sys-fs/multipath-tools/files/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 53c3a74882acd60a384e2d98fd3081fc93beb663 X-VCS-Branch: master Date: Wed, 17 Jan 2018 12:07:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a4d4c701-fe23-42c5-a1ea-41126653d126 X-Archives-Hash: e15c64db3ac6564eb09d22d8ae47d92f commit: 53c3a74882acd60a384e2d98fd3081fc93beb663 Author: Lars Wendler gentoo org> AuthorDate: Wed Jan 17 12:06:06 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jan 17 12:07:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c3a748 sys-fs/multipath-tools: Removed unused patch. Package-Manager: Portage-2.3.19, Repoman-2.3.6 ...ath-tools-0.7.3-fix-build-without-systemd.patch | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/sys-fs/multipath-tools/files/multipath-tools-0.7.3-fix-build-without-systemd.patch b/sys-fs/multipath-tools/files/multipath-tools-0.7.3-fix-build-without-systemd.patch deleted file mode 100644 index d92e5c05c7d..00000000000 --- a/sys-fs/multipath-tools/files/multipath-tools-0.7.3-fix-build-without-systemd.patch +++ /dev/null @@ -1,39 +0,0 @@ -From f0a874f9bd86504840a7bdbf0a0c07bcd0ea8c29 Mon Sep 17 00:00:00 2001 -From: Michael Lass -Date: Wed, 20 Sep 2017 21:54:32 +0200 -Subject: [PATCH] multipathd: fix build without systemd - -do_sd_notify contains a call to sd_notify which is unknown if USE_SYSTEMD is -undefined. In this case, do_sd_notify is never called anyway, so embed the -entire function into an #ifdef USE_SYSTEMD. - -This fixes a regression introduced in 88ddca5. - -Signed-off-by: Michael Lass ---- - multipathd/main.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/multipathd/main.c b/multipathd/main.c -index 8049da22..bbe14771 100644 ---- a/multipathd/main.c -+++ b/multipathd/main.c -@@ -169,6 +169,7 @@ sd_notify_status(void) - return NULL; - } - -+#ifdef USE_SYSTEMD - static void do_sd_notify(enum daemon_status old_state) - { - /* -@@ -181,6 +182,7 @@ static void do_sd_notify(enum daemon_status old_state) - return; - sd_notify(0, sd_notify_status()); - } -+#endif - - static void config_cleanup(void *arg) - { --- -2.14.1 -