From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-4317.proton.ch (mail-4317.proton.ch [185.70.43.17]) by sourceware.org (Postfix) with ESMTPS id 2BDC43883F26 for ; Wed, 14 Dec 2022 13:55:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2BDC43883F26 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=lorenzosalvadore.it Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=lorenzosalvadore.it Date: Wed, 14 Dec 2022 13:55:22 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lorenzosalvadore.it; s=protonmail; t=1671026132; x=1671285332; bh=Hs6Gz0O/zuOHRt2I45hqfjUTGitFDQkb5EZLoNrSOBs=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=I89utXBy1IgflxMBKv6hmpJVUSmXz9dQZnU5TYnIYqTxMOcv2T06a6J3jYg7Rhx/v +zH+uyWGq0lLwX/JFtZKhX6wZGF7Bihp9N8vlZ8BBta/UNsDetNR09LIc2ZIxxWcQH oSpX5N/gmQDNZ7D/FR3n9jrLV11so9UpgittbrGY1CboJfyyhkzhBrjMQI3F/cEtB3 TcQrgwWI9+3stbrpoo2TrrPqjVeGmpBdsbItUk+VORc2pQZ8KNr7PBwCa9yiOuH0hz DMV1K+CfJjLLWYuLShsUf1WYk1bIciK7rwi0RQvjYWC28vYa5QDGV8w1eXFAY+TIJ7 zeOtuUHRUGplw== To: "gcc-patches@gcc.gnu.org" From: Lorenzo Salvadore Cc: "ibuclaw@gdcproject.org" , "andreast@gcc.gnu.org" , Gerald Pfeifer Subject: Ping^2: [PATCH] d: Update __FreeBSD_version values [PR107469] Message-ID: In-Reply-To: References: Feedback-ID: 53711648:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_SHORT,RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hello, Ping https://gcc.gnu.org/pipermail/gcc-patches/2022-November/605685.html I would like to remind that Gerald Pfeifer already volunteered to commit th= is patch when it is approved. However the patch has not been approved yet. Thanks, Lorenzo Salvadore > ------- Original Message ------- > On Friday, November 11th, 2022 at 12:07 AM, Lorenzo Salvadore developer@l= orenzosalvadore.it wrote: >=20 > > Update __FreeBSD_version values for the latest FreeBSD supported > > versions. In particular, add __FreeBSD_version for FreeBSD 14, which is > > necessary to compile libphobos successfully on FreeBSD 14. > >=20 > > The patch has already been applied successfully in the official FreeBSD > > ports tree for the ports lang/gcc11 and lang/gcc11-devel. Please see th= e > > following commits: > >=20 > > https://cgit.freebsd.org/ports/commit/?id=3Df61fb49b2e76fd4f7a5b7a11510= b5109206c19f2 > > https://cgit.freebsd.org/ports/commit/?id=3D57936dba89ea208e5dbc1bd2d7f= da3d29a1838b3 > >=20 > > libphobos/ChangeLog: > >=20 > > 2022-11-10 Lorenzo Salvadore developer@lorenzosalvadore.it > >=20 > > PR d/107469. > > * libdruntime/core/sys/freebsd/config.d: Update __FreeBSD_version. > >=20 > > --- > > libphobos/libdruntime/core/sys/freebsd/config.d | 5 +++-- > > 1 file changed, 3 insertions(+), 2 deletions(-) > >=20 > > diff --git a/libphobos/libdruntime/core/sys/freebsd/config.d b/libphobo= s/libdruntime/core/sys/freebsd/config.d > > index 5e3129e2422..9d502e52e32 100644 > > --- a/libphobos/libdruntime/core/sys/freebsd/config.d > > +++ b/libphobos/libdruntime/core/sys/freebsd/config.d > > @@ -14,8 +14,9 @@ public import core.sys.posix.config; > > // NOTE: When adding newer versions of FreeBSD, verify all current vers= ioned > > // bindings are still compatible with the release. > >=20 > > - version (FreeBSD_13) enum __FreeBSD_version =3D 1300000; > > -else version (FreeBSD_12) enum __FreeBSD_version =3D 1202000; > > + version (FreeBSD_14) enum __FreeBSD_version =3D 1400000; > > +else version (FreeBSD_13) enum __FreeBSD_version =3D 1301000; > > +else version (FreeBSD_12) enum __FreeBSD_version =3D 1203000; > > else version (FreeBSD_11) enum __FreeBSD_version =3D 1104000; > > else version (FreeBSD_10) enum __FreeBSD_version =3D 1004000; > > else version (FreeBSD_9) enum __FreeBSD_version =3D 903000; > > -- > > 2.38.0