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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A7B141581EE for ; Wed, 20 Nov 2024 13:06:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E084CE07D4; Wed, 20 Nov 2024 13:06: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 BF270E07D4 for ; Wed, 20 Nov 2024 13:06:28 +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 DE3F2342F93 for ; Wed, 20 Nov 2024 13:06:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D5D718EB for ; Wed, 20 Nov 2024 13:06:26 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1732107967.95cab08d8d82cee10dd98356274d56bd852a8675.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-18.59-r15.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 95cab08d8d82cee10dd98356274d56bd852a8675 X-VCS-Branch: master Date: Wed, 20 Nov 2024 13:06:26 +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: 4a56f297-3518-4357-9014-121b1fc3dea7 X-Archives-Hash: b9d8d33d05d3b7700693cb7ebd42a04b commit: 95cab08d8d82cee10dd98356274d56bd852a8675 Author: Ulrich Müller gentoo org> AuthorDate: Wed Nov 20 12:51:06 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Nov 20 13:06:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95cab08d app-editors/emacs: Compile with gnu17 standard Closes: https://bugs.gentoo.org/944102 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-18.59-r15.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-editors/emacs/emacs-18.59-r15.ebuild b/app-editors/emacs/emacs-18.59-r15.ebuild index 87944772b4c2..7e73a99d9984 100644 --- a/app-editors/emacs/emacs-18.59-r15.ebuild +++ b/app-editors/emacs/emacs-18.59-r15.ebuild @@ -80,8 +80,8 @@ src_configure() { # all those missing prototypes. strip-flags filter-flags -finline-functions -fpie -flto - append-flags -fno-strict-aliasing -Wno-implicit -Wno-return-type \ - -Wno-return-mismatch + append-flags -std=gnu17 -fno-strict-aliasing -Wno-implicit \ + -Wno-return-type -Wno-return-mismatch append-ldflags $(test-flags -no-pie) #639562 replace-flags -O[3-9] -O2 }