Message ID | 20210223081639.3264213-1-Paul.Zimmermann@inria.fr (mailing list archive) |
---|---|
State | Committed |
Commit | 90197376d5d31adbfa8589acf6c9ab8ac4755ecf |
Delegated to: | Paul Zimmermann |
Headers |
Return-Path: <libc-alpha-bounces@sourceware.org> X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3F1653846454; Tue, 23 Feb 2021 08:16:57 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sourceware.org (Postfix) with ESMTPS id 3DAC6385801A for <libc-alpha@sourceware.org>; Tue, 23 Feb 2021 08:16:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3DAC6385801A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=inria.fr Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=Paul.Zimmermann@loria.fr X-IronPort-AV: E=Sophos;i="5.81,199,1610406000"; d="scan'208";a="494417653" Received: from tomate.loria.fr ([152.81.10.51]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Feb 2021 09:16:50 +0100 Received: from zimmerma by tomate.loria.fr with local (Exim 4.94) (envelope-from <Paul.Zimmermann@loria.fr>) id 1lESsD-00DhV5-Mt; Tue, 23 Feb 2021 09:16:49 +0100 From: Paul Zimmermann <Paul.Zimmermann@inria.fr> To: libc-alpha@sourceware.org Subject: [PATCH] added rt to malloc/Depend [BZ #27132] Date: Tue, 23 Feb 2021 09:16:39 +0100 Message-Id: <20210223081639.3264213-1-Paul.Zimmermann@inria.fr> X-Mailer: git-send-email 2.30.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list <libc-alpha.sourceware.org> List-Unsubscribe: <https://sourceware.org/mailman/options/libc-alpha>, <mailto:libc-alpha-request@sourceware.org?subject=unsubscribe> List-Archive: <https://sourceware.org/pipermail/libc-alpha/> List-Post: <mailto:libc-alpha@sourceware.org> List-Help: <mailto:libc-alpha-request@sourceware.org?subject=help> List-Subscribe: <https://sourceware.org/mailman/listinfo/libc-alpha>, <mailto:libc-alpha-request@sourceware.org?subject=subscribe> Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" <libc-alpha-bounces@sourceware.org> |
Series |
added rt to malloc/Depend [BZ #27132]
|
|
Commit Message
Paul Zimmermann
Feb. 23, 2021, 8:16 a.m. UTC
This avoids a failure when a new glibc version is compiled with an older system librt. Patch proposed by Florian Weimer. --- malloc/Depend | 1 + 1 file changed, 1 insertion(+)
Comments
* Paul Zimmermann: > This avoids a failure when a new glibc version is compiled with an older > system librt. Patch proposed by Florian Weimer. > --- > malloc/Depend | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/malloc/Depend b/malloc/Depend > index f5e248047c..ed18c37b80 100644 > --- a/malloc/Depend > +++ b/malloc/Depend > @@ -1,3 +1,4 @@ > dlfcn > nptl > htl > +rt Please commit this. Thanks, Florian
Dear Florian, > > This avoids a failure when a new glibc version is compiled with an older > > system librt. Patch proposed by Florian Weimer. > > --- > > malloc/Depend | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/malloc/Depend b/malloc/Depend > > index f5e248047c..ed18c37b80 100644 > > --- a/malloc/Depend > > +++ b/malloc/Depend > > @@ -1,3 +1,4 @@ > > dlfcn > > nptl > > htl > > +rt > > Please commit this. done. Should I also close BZ #27132? Paul
* Paul Zimmermann:
> done. Should I also close BZ #27132?
Yes, please. Are you able to set the target milestone to 2.34?
Thanks,
Florian
> > done. Should I also close BZ #27132? > > Yes, please. Are you able to set the target milestone to 2.34? done, hopefully I did it right. Paul
* Paul Zimmermann: >> > done. Should I also close BZ #27132? >> >> Yes, please. Are you able to set the target milestone to 2.34? > > done, hopefully I did it right. Sorry, I had to grant you editbugs privileges first. You should be able to edit the Target Milestone field now (the one with the drop-down menu listing versions). Thanks, Florian
diff --git a/malloc/Depend b/malloc/Depend index f5e248047c..ed18c37b80 100644 --- a/malloc/Depend +++ b/malloc/Depend @@ -1,3 +1,4 @@ dlfcn nptl htl +rt