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 88B2C1395E2 for ; Mon, 14 Nov 2016 14:57:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A53AEE0912; Mon, 14 Nov 2016 14:57:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85554E0912 for ; Mon, 14 Nov 2016 14:57:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95257341342 for ; Mon, 14 Nov 2016 14:57:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CA9724AA for ; Mon, 14 Nov 2016 14:57:09 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1479135421.abd7ee6dce8fe692897ac9201301c7c2038cecf6.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: paxldso.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: abd7ee6dce8fe692897ac9201301c7c2038cecf6 X-VCS-Branch: master Date: Mon, 14 Nov 2016 14:57:09 +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: 3dae47c4-69c1-40b2-85f2-e2d87e47b2b9 X-Archives-Hash: 0fd42fac0f26b10b8cb64cdcc0444be0 commit: abd7ee6dce8fe692897ac9201301c7c2038cecf6 Author: Mike Frysinger gentoo org> AuthorDate: Mon Nov 14 14:57:01 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Nov 14 14:57:01 2016 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=abd7ee6d paxldso: fix building when ldso support is disabled paxldso.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/paxldso.c b/paxldso.c index 2227387..93eaf97 100644 --- a/paxldso.c +++ b/paxldso.c @@ -362,8 +362,10 @@ static void ldso_config_cleanup(void) # define ldso_config_cleanup() #endif /* PAX_LDSO_CONFIG */ +#ifndef paxldso_cleanup void paxldso_cleanup(void) { ldso_cache_cleanup(); ldso_config_cleanup(); } +#endif