From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-4.2 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (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 dcvr.yhbt.net (Postfix) with ESMTPS id CBC421F8C6 for ; Thu, 29 Jul 2021 07:56:48 +0000 (UTC) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9B3753939C0D for ; Thu, 29 Jul 2021 07:56:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9B3753939C0D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1627545407; bh=dFkl5yzRxgWEN6o+2PloxZrx8RNilkPjfFaHxTkD7sw=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=sVSPzDPeFed0rHcXmGcl2jxGKIqmQMjZbQI5RDYRba8D/IZebCmiF8Seb4Q4KuUrg 8Q2wN3edewtEwDxUh19eUPxS05JVcV97p0TgKrSkFyKJKjBHpyp/FP8kgMm/Yfwvgv dIvlRUxuD0bgXiLaRLCpSWu+KwVLAxbZF0RHpUD4= Received: from mail.ispras.ru (mail.ispras.ru [83.149.199.84]) by sourceware.org (Postfix) with ESMTPS id 9A1673858018 for ; Thu, 29 Jul 2021 07:56:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9A1673858018 Received: from monopod.intra.ispras.ru (unknown [10.10.3.121]) by mail.ispras.ru (Postfix) with ESMTPS id 668E440755FE; Thu, 29 Jul 2021 07:56:26 +0000 (UTC) Date: Thu, 29 Jul 2021 10:56:25 +0300 (MSK) To: Florian Weimer Subject: Re: [PATCH] NEWS: Mention libpthread, libdl, libutil, libanl integration In-Reply-To: <871r7roomm.fsf@oldenburg.str.redhat.com> Message-ID: References: <871r7roomm.fsf@oldenburg.str.redhat.com> User-Agent: Alpine 2.20.13 (LNX 116 2015-12-14) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Alexander Monakov via Libc-alpha Reply-To: Alexander Monakov Cc: libc-alpha@sourceware.org Errors-To: libc-alpha-bounces+e=80x24.org@sourceware.org Sender: "Libc-alpha" On Wed, 21 Jul 2021, Florian Weimer via Libc-alpha wrote: > --- a/NEWS > +++ b/NEWS > @@ -9,6 +9,20 @@ Version 2.34 > > Major new features: > > +* All functionality formerly implemented in the libraries libpthread, > + libdl, libutil, libanl has been integrated into libc. New > + applications do not link with -lpthread, -ldl, -lutil, -lanl anymore. "do not need to link"? (missing "need") This is also true for relinking old applications. Maybe rephrase to avoid making the unintended implication? (or simply drop "new") Alexander