From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24208 invoked by alias); 2 Nov 2004 21:32:55 -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 24191 invoked from network); 2 Nov 2004 21:32:54 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 2 Nov 2004 21:32:54 -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 iA2LUm3j001077; Tue, 2 Nov 2004 22:30:48 +0100 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id iA2LUlOT001075; Tue, 2 Nov 2004 22:30:47 +0100 Date: Tue, 02 Nov 2004 21:32:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Fix NPTL build on IA-64 Message-ID: <20041102213047.GV30497@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.4.1i X-SW-Source: 2004-11/txt/msg00002.txt.bz2 Hi! After recent changes to smp.h NPTL on IA-64 no longer compiles - __set_errno is not defined. Here is a quick fix, though not sure if it wouldn't be better to just #include in all sysdep.h headers that define INLINE_SYSCALL macro (as there __set_errno is used). 2004-11-02 Jakub Jelinek * sysdeps/unix/sysv/linux/smp.h: Include errno.h. --- libc/nptl/sysdeps/unix/sysv/linux/smp.h 24 Oct 2004 22:04:05 -0000 1.2 +++ libc/nptl/sysdeps/unix/sysv/linux/smp.h 2 Nov 2004 17:07:42 -0000 1.1.2.2 @@ -17,6 +17,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include #include #include #include Jakub