From patchwork Mon May 19 22:09:55 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 1021 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx20.g.dreamhost.com (mx2.sub5.homie.mail.dreamhost.com [208.113.200.128]) by wilcox.dreamhost.com (Postfix) with ESMTP id B115E3600C0 for ; Mon, 19 May 2014 15:10:08 -0700 (PDT) Received: by homiemail-mx20.g.dreamhost.com (Postfix, from userid 14307373) id BFC60419F425C; Mon, 19 May 2014 15:10:07 -0700 (PDT) X-Original-To: glibc@patchwork.siddhesh.in Delivered-To: x14307373@homiemail-mx20.g.dreamhost.com Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by homiemail-mx20.g.dreamhost.com (Postfix) with ESMTPS id 9326F41C6969E for ; Mon, 19 May 2014 15:10:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=evKjmb8Xa9MMmu9m2ChJokSwxJr2I D6LWPytfntzbYIYx0/56v0s4C6imYOUgkAIkF6vySBb2s0OepbEVu4+B3ViH6zyQ FYZp4sRN2L/u4VdZQMj+oh6R0ygVMR9MbF1LVyzDlLzfAyo1Gn6dx4DddsPV/lfK 8FoKQECGtIoX5E= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=LJDd/rKPwgt0vR3ZPpNd2jbjGDQ=; b=ayg 3SVoKyVT9kK4a+hRgnDGMm/5raeCSjX+2R0CI8KmbI6ZbU4C09QlE+eMQJgTTNE/ 6GlvkUvXX+awpM+c7DJbwrGk0wHBZcib1ltXUJvyXjQ5NvjIstC+/ZOqNrx7BF/1 vkJuFDBgWSzNliQ/s5u6n+VgqyL8q3GTgFfxMdGs= Received: (qmail 24267 invoked by alias); 19 May 2014 22:10:04 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 24254 invoked by uid 89); 19 May 2014 22:10:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Date: Mon, 19 May 2014 22:09:55 +0000 From: "Joseph S. Myers" To: Subject: Don't mention linuxthreads in Depend files Message-ID: MIME-Version: 1.0 X-DH-Original-To: glibc@patchwork.siddhesh.in I noticed that some of the Depend files, used to determine the subdirectory build order in sysd-sorted, still mentioned linuxthreads, although it hasn't been supported for many years. This patch removes those references. In the case of nscd, it substitutes an nptl reference, since I believe there is a fact a thread library dependence there; the others already mentioned nptl. Note that I am not at all confident in the completeness of these Depend files. Note also that references to linuxthreads remain in a comment in sysdeps/unix/sysv/linux/ia64/Versions, and in manual/maint.texi, manual/signal.texi and scripts/documented.sh. Tested x86_64 that the installed shared libraries are unchanged by the patch (as is sysd-sorted). 2014-05-19 Joseph Myers * nscd/Depend (linuxthreads): Remove. (nptl): Add. * resolv/Depend (linuxthreads): Remove. * rt/Depend (linuxthreads): Remove. diff --git a/nscd/Depend b/nscd/Depend index fe673ba..6c1aa44 100644 --- a/nscd/Depend +++ b/nscd/Depend @@ -1 +1 @@ -linuxthreads +nptl diff --git a/resolv/Depend b/resolv/Depend index 8d2587b..6c1aa44 100644 --- a/resolv/Depend +++ b/resolv/Depend @@ -1,2 +1 @@ -linuxthreads nptl diff --git a/rt/Depend b/rt/Depend index 8d2587b..6c1aa44 100644 --- a/rt/Depend +++ b/rt/Depend @@ -1,2 +1 @@ -linuxthreads nptl