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 67C25158086 for ; Tue, 26 Oct 2021 05:48:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5258DE0826; Tue, 26 Oct 2021 05:48:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E390CE0826 for ; Tue, 26 Oct 2021 05:48:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D86A3343A01 for ; Tue, 26 Oct 2021 05:48:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4725B15A for ; Tue, 26 Oct 2021 05:48:07 +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: <1635227264.19d9182c529f551b404d8f40525da07ee7648b16.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gloox/, net-libs/gloox/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gloox/files/gloox-1.0.24-pthread-link.patch net-libs/gloox/gloox-1.0.24.ebuild X-VCS-Directories: net-libs/gloox/ net-libs/gloox/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 19d9182c529f551b404d8f40525da07ee7648b16 X-VCS-Branch: master Date: Tue, 26 Oct 2021 05:48:07 +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: 8bf78d07-97c9-4ef4-a7be-44451cbe3a09 X-Archives-Hash: 624e6da078c914833e20a30bf73ad73a commit: 19d9182c529f551b404d8f40525da07ee7648b16 Author: Sam James gentoo org> AuthorDate: Tue Oct 26 05:47:44 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 26 05:47:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19d9182c net-libs/gloox: link against pthread if needed Closes: https://bugs.gentoo.org/772992 Signed-off-by: Sam James gentoo.org> net-libs/gloox/files/gloox-1.0.24-pthread-link.patch | 17 +++++++++++++++++ net-libs/gloox/gloox-1.0.24.ebuild | 1 + 2 files changed, 18 insertions(+) diff --git a/net-libs/gloox/files/gloox-1.0.24-pthread-link.patch b/net-libs/gloox/files/gloox-1.0.24-pthread-link.patch new file mode 100644 index 00000000000..b66c279730c --- /dev/null +++ b/net-libs/gloox/files/gloox-1.0.24-pthread-link.patch @@ -0,0 +1,17 @@ +https://bugs.gentoo.org/772992 + +From: Sam James +Date: Tue, 26 Oct 2021 06:44:07 +0100 +Subject: [PATCH] Link against pthread for libgloox +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -47,7 +47,7 @@ libgloox_la_SOURCES = jid.cpp parser.cpp connectiontcpclient.cpp clientbase.cpp + iodata.cpp + + libgloox_la_LDFLAGS = -version-info 18:0:0 -Wl,--no-undefined -Wl,--no-allow-shlib-undefined +-libgloox_la_LIBADD = ++libgloox_la_LIBADD = @PTHREAD_LIBS@ + libgloox_la_CFLAGS = $(CPPFLAGS) + + libglooxincludedir = $(includedir)/gloox + diff --git a/net-libs/gloox/gloox-1.0.24.ebuild b/net-libs/gloox/gloox-1.0.24.ebuild index 54a4ddc7b74..b6339875943 100644 --- a/net-libs/gloox/gloox-1.0.24.ebuild +++ b/net-libs/gloox/gloox-1.0.24.ebuild @@ -32,6 +32,7 @@ PATCHES=( "${FILESDIR}/${PN}-1.0.24-musl.patch" "${FILESDIR}/${PN}-1.0.24-Makefile.patch" "${FILESDIR}/${PN}-1.0.24-slibtool.patch" + "${FILESDIR}/${PN}-1.0.24-pthread-link.patch" ) src_prepare() {