From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5129 invoked by alias); 18 Mar 2004 16:07:12 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 5080 invoked from network); 18 Mar 2004 16:07:08 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sources.redhat.com with SMTP; 18 Mar 2004 16:07:08 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8) with ESMTP id i2IDvcGc020066; Thu, 18 Mar 2004 14:57:38 +0100 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i2IDvc8W020062; Thu, 18 Mar 2004 14:57:38 +0100 Date: Thu, 18 Mar 2004 16:07:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Fix ldconfig.c with !NPTL Message-ID: <20040318135737.GF6393@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2004-03/txt/msg00097.txt.bz2 Hi! stdbool.h is included via nptl/descr.h in NPTL builds, but is not included when doing linuxthreads build. 2004-03-18 Jakub Jelinek * elf/ldconfig.c: Include stdbool.h. --- libc/elf/ldconfig.c.jj 2004-03-18 13:18:29.000000000 +0100 +++ libc/elf/ldconfig.c 2004-03-18 17:05:25.249720038 +0100 @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include Jakub