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 9F46F158200 for ; Sun, 14 Sep 2025 10:47:45 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E8D8434100A for ; Sun, 14 Sep 2025 10:47:44 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 41A12110576; Sun, 14 Sep 2025 10:46:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3A488110576 for ; Sun, 14 Sep 2025 10:46:03 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E568F340FC6 for ; Sun, 14 Sep 2025 10:46:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 143B239AF for ; Sun, 14 Sep 2025 10:45:59 +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: <1757846664.d1ebe725097351435cf9fb2bfb07a94d187e72b1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/samba/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/samba/samba-4.20.8-r1.ebuild net-fs/samba/samba-4.21.7.ebuild net-fs/samba/samba-4.22.3.ebuild X-VCS-Directories: net-fs/samba/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d1ebe725097351435cf9fb2bfb07a94d187e72b1 X-VCS-Branch: master Date: Sun, 14 Sep 2025 10:45:59 +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: 184b4281-4b19-4b3e-9cc8-bb8ddd1a5721 X-Archives-Hash: 43b9eaeeaae597487e706fe2b476af7a commit: d1ebe725097351435cf9fb2bfb07a94d187e72b1 Author: Z. Liu gmail com> AuthorDate: Sat Jul 19 12:53:56 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 14 10:44:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1ebe725 net-fs/samba: always pass -Wl,--undefined-version if supported Closes: https://bugs.gentoo.org/914898 Signed-off-by: Z. Liu gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43064 Closes: https://github.com/gentoo/gentoo/pull/43064 Signed-off-by: Sam James gentoo.org> net-fs/samba/samba-4.20.8-r1.ebuild | 2 ++ net-fs/samba/samba-4.21.7.ebuild | 2 ++ net-fs/samba/samba-4.22.3.ebuild | 2 ++ 3 files changed, 6 insertions(+) diff --git a/net-fs/samba/samba-4.20.8-r1.ebuild b/net-fs/samba/samba-4.20.8-r1.ebuild index b75d27234bcd..1a0f9329713b 100644 --- a/net-fs/samba/samba-4.20.8-r1.ebuild +++ b/net-fs/samba/samba-4.20.8-r1.ebuild @@ -300,6 +300,8 @@ multilib_src_configure() { myconf+=( --with-shared-modules=DEFAULT,!vfs_snapper ) fi + append-ldflags $(test-flags-CCLD -Wl,--undefined-version) # bug 914898 + append-cppflags "-I${ESYSROOT}/usr/include/et" waf-utils_src_configure ${myconf[@]} diff --git a/net-fs/samba/samba-4.21.7.ebuild b/net-fs/samba/samba-4.21.7.ebuild index 859ebf0287ff..054c5dc47b83 100644 --- a/net-fs/samba/samba-4.21.7.ebuild +++ b/net-fs/samba/samba-4.21.7.ebuild @@ -304,6 +304,8 @@ multilib_src_configure() { myconf+=( --with-shared-modules=DEFAULT,!vfs_snapper ) fi + append-ldflags $(test-flags-CCLD -Wl,--undefined-version) # bug 914898 + append-cppflags "-I${ESYSROOT}/usr/include/et" waf-utils_src_configure ${myconf[@]} diff --git a/net-fs/samba/samba-4.22.3.ebuild b/net-fs/samba/samba-4.22.3.ebuild index 27bc11609d6e..42c7b46371ab 100644 --- a/net-fs/samba/samba-4.22.3.ebuild +++ b/net-fs/samba/samba-4.22.3.ebuild @@ -304,6 +304,8 @@ multilib_src_configure() { myconf+=( --with-shared-modules=DEFAULT,!vfs_snapper ) fi + append-ldflags $(test-flags-CCLD -Wl,--undefined-version) # bug 914898 + append-cppflags "-I${ESYSROOT}/usr/include/et" waf-utils_src_configure ${myconf[@]}