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 AF4DD15800A for ; Mon, 24 Jul 2023 22:19:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08926E0536; Mon, 24 Jul 2023 22:19:28 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF9C6E0536 for ; Mon, 24 Jul 2023 22:19:27 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC30C3414E0 for ; Mon, 24 Jul 2023 22:19:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 720C2BED for ; Mon, 24 Jul 2023 22:19:25 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1690237155.97b9ba43cdb2a8da636cbc71dde9a5d6239b26a2.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/glibc/glibc-9999.ebuild X-VCS-Directories: sys-libs/glibc/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 97b9ba43cdb2a8da636cbc71dde9a5d6239b26a2 X-VCS-Branch: master Date: Mon, 24 Jul 2023 22:19:25 +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: 6ccd70f2-f5d6-4c73-8f93-81f6f95c0619 X-Archives-Hash: 62bd8690f1da4a05dd27724d812e90e3 commit: 97b9ba43cdb2a8da636cbc71dde9a5d6239b26a2 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Jul 24 22:17:40 2023 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Jul 24 22:19:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97b9ba43 sys-libs/glibc: Add --enable-fortify-source configure parameter (new) Without this, _FORTIFY_SOURCE now gets undefined. With it (but without an explicit value), glibc picks the maximum supported number (on current toolchain 3). Signed-off-by: Andreas K. Hüttel gentoo.org> sys-libs/glibc/glibc-9999.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index 2b4e84c98db7..2d5a5b523933 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -986,6 +986,7 @@ glibc_do_configure() { myconf+=( --disable-werror --enable-bind-now + --enable-fortify-source --build=${CBUILD_OPT:-${CBUILD}} --host=${CTARGET_OPT:-${CTARGET}} $(use_enable profile)