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 9ADA4138359 for ; Sun, 13 Sep 2020 21:17:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3FBEE0821; Sun, 13 Sep 2020 21:17:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AC4F9E0821 for ; Sun, 13 Sep 2020 21:17:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 64595340B25 for ; Sun, 13 Sep 2020 21:17:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FB302EE for ; Sun, 13 Sep 2020 21:17:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600031837.dc125b4004b189c1b09e45e1d9b803d574718c23.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libwebsockets/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libwebsockets/libwebsockets-4.0.20.ebuild X-VCS-Directories: net-libs/libwebsockets/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dc125b4004b189c1b09e45e1d9b803d574718c23 X-VCS-Branch: master Date: Sun, 13 Sep 2020 21:17:22 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4bad6b52-6e81-4c91-b40a-d5cceafc8ddf X-Archives-Hash: c91779c07881132a0ad3cd516c68c6c6 commit: dc125b4004b189c1b09e45e1d9b803d574718c23 Author: Jakov Smolic sartura hr> AuthorDate: Wed Sep 2 20:10:00 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 13 21:17:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc125b40 net-libs/libwebsockets: set LWS_DBUS_INCLUDE2 CMake only looks for dbus-arch-deps.h at /usr/lib64, so we have to manually set LWS_DBUS_INCLUDE2 for 32-bit systems where it is located at /usr/lib Closes: https://bugs.gentoo.org/740090 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Closes: https://github.com/gentoo/gentoo/pull/17389 Signed-off-by: Sam James gentoo.org> net-libs/libwebsockets/libwebsockets-4.0.20.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net-libs/libwebsockets/libwebsockets-4.0.20.ebuild b/net-libs/libwebsockets/libwebsockets-4.0.20.ebuild index 2fa0810a12e..b0d538ff906 100644 --- a/net-libs/libwebsockets/libwebsockets-4.0.20.ebuild +++ b/net-libs/libwebsockets/libwebsockets-4.0.20.ebuild @@ -82,5 +82,7 @@ src_configure() { -DLWS_WITHOUT_TESTAPPS=ON ) + use dbus && mycmakeargs+=( -DLWS_DBUS_INCLUDE2="/usr/$(get_libdir)/dbus-1.0/include" ) + cmake_src_configure }