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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 53D36158087 for ; Thu, 18 Nov 2021 08:01:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E29BE0869; Thu, 18 Nov 2021 08:01:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2218AE0869 for ; Thu, 18 Nov 2021 08:01:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C9ABA342F00 for ; Thu, 18 Nov 2021 08:01:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A20611BD for ; Thu, 18 Nov 2021 08:00:58 +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: <1637222385.7609ae8d3ee84ed7313f19f3d677f251fcb5ea50.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/hercules/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/hercules/files/hercules-3.13-unbundle-libltdl.patch X-VCS-Directories: app-emulation/hercules/files/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 7609ae8d3ee84ed7313f19f3d677f251fcb5ea50 X-VCS-Branch: master Date: Thu, 18 Nov 2021 08:00:58 +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: f7fb1eb3-560a-412f-89a8-bc2cc1237c26 X-Archives-Hash: 2e0691852737140c58b10e9397748752 commit: 7609ae8d3ee84ed7313f19f3d677f251fcb5ea50 Author: Mike Frysinger gentoo org> AuthorDate: Thu Nov 18 07:20:04 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Nov 18 07:59:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7609ae8d app-emulation/hercules: fix linking of modules with system libtool #779100 Add missing linkage to the libhercu.la module for system libtool. This doesn't normally matter as the module is loaded by hercules which itself is linked against libtool. Bug: https://bugs.gentoo.org/252716 Closes: https://bugs.gentoo.org/779100 Signed-off-by: Mike Frysinger gentoo.org> app-emulation/hercules/files/hercules-3.13-unbundle-libltdl.patch | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-emulation/hercules/files/hercules-3.13-unbundle-libltdl.patch b/app-emulation/hercules/files/hercules-3.13-unbundle-libltdl.patch index 7aec7f602de4..11a751c1e592 100644 --- a/app-emulation/hercules/files/hercules-3.13-unbundle-libltdl.patch +++ b/app-emulation/hercules/files/hercules-3.13-unbundle-libltdl.patch @@ -282,7 +282,7 @@ DYNMOD_LD_FLAGS = DYNMOD_LD_ADD = LIB_LD_FLAGS = $(XSTATIC) \ -@@ -295,8 +295,7 @@ +@@ -295,12 +295,11 @@ memrchr.c \ parser.c \ pttrace.c \ @@ -292,6 +292,11 @@ libhercu_la_LDFLAGS = $(LIB_LD_FLAGS) +- libhercu_la_LIBADD = $(LDADD) libhercs.la ++ libhercu_la_LIBADD = $(LDADD) libhercs.la $(LIB_LD_ADD) + + # + # Core Hercules (shared) library @@ -372,8 +371,7 @@ memrchr.c \ $(dynamic_SRC) \