From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0DE281581EE for ; Sun, 06 Apr 2025 11:57:56 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E9936343177 for ; Sun, 06 Apr 2025 11:57:55 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id D58B01102CE; Sun, 06 Apr 2025 11:57:54 +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 bobolink.gentoo.org (Postfix) with ESMTPS id C80B81102CE for ; Sun, 06 Apr 2025 11:57:54 +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 6C8C534316E for ; Sun, 06 Apr 2025 11:57:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACB30146A for ; Sun, 06 Apr 2025 11:57:52 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1743940668.2d29048d43fa66df5b8fdbfea8965e5b5a95846e.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/sqlite/sqlite-3.49.1.ebuild dev-db/sqlite/sqlite-9999.ebuild X-VCS-Directories: dev-db/sqlite/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 2d29048d43fa66df5b8fdbfea8965e5b5a95846e X-VCS-Branch: master Date: Sun, 06 Apr 2025 11:57:52 +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: ad59643d-7d45-422f-ac49-6a1e123f36c3 X-Archives-Hash: 08b100fb2da0eafaa4752b4a2c9d3b26 commit: 2d29048d43fa66df5b8fdbfea8965e5b5a95846e Author: Fabian Groffen gentoo org> AuthorDate: Sun Apr 6 11:56:45 2025 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Apr 6 11:57:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d29048d dev-db/sqlite: fix Darwin install_name (soname) updating for longer paths Signed-off-by: Fabian Groffen gentoo.org> dev-db/sqlite/sqlite-3.49.1.ebuild | 3 +++ dev-db/sqlite/sqlite-9999.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dev-db/sqlite/sqlite-3.49.1.ebuild b/dev-db/sqlite/sqlite-3.49.1.ebuild index 25ab0c8a1da6..1218150a3805 100644 --- a/dev-db/sqlite/sqlite-3.49.1.ebuild +++ b/dev-db/sqlite/sqlite-3.49.1.ebuild @@ -325,6 +325,9 @@ multilib_src_configure() { if [[ ${CHOST} != *-darwin* ]] ; then # set SONAME for the library options+=( --soname=legacy ) + else + # to allow install_name_tool id change + append-ldflags -headerpad_max_install_names fi # https://sqlite.org/forum/forumpost/4f4d06a9f6683bb9 diff --git a/dev-db/sqlite/sqlite-9999.ebuild b/dev-db/sqlite/sqlite-9999.ebuild index 2d4ae2f9926b..a8597d10589d 100644 --- a/dev-db/sqlite/sqlite-9999.ebuild +++ b/dev-db/sqlite/sqlite-9999.ebuild @@ -321,6 +321,9 @@ multilib_src_configure() { if [[ ${CHOST} != *-darwin* ]] ; then # set SONAME for the library options+=( --soname=legacy ) + else + # to allow install_name_tool id change + append-ldflags -headerpad_max_install_names fi # https://sqlite.org/forum/forumpost/4f4d06a9f6683bb9