From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2731 invoked by alias); 5 Oct 2004 15:31:54 -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 2685 invoked from network); 5 Oct 2004 15:31:54 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sourceware.org with SMTP; 5 Oct 2004 15:31: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 i95FV23j004350; Tue, 5 Oct 2004 17:31:02 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i95FV1iW004348; Tue, 5 Oct 2004 17:31:01 +0200 Date: Tue, 05 Oct 2004 15:31:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix s390{,x} build Message-ID: <20041005153101.GF30497@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-10/txt/msg00006.txt.bz2 Hi! Without this s390{,x} ld.so doesn't link. 2004-10-05 Jakub Jelinek * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Include dl-sysdep.h. * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise. --- libc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h 4 Oct 2004 20:59:35 -0000 1.14 +++ libc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h 5 Oct 2004 11:23:18 -0000 1.12.2.3 @@ -22,6 +22,7 @@ #include #include +#include /* For RTLD_PRIVATE_ERRNO. */ /* For Linux we can use the system call table in the header file /usr/include/asm/unistd.h --- libc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h 4 Oct 2004 20:59:34 -0000 1.16 +++ libc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h 5 Oct 2004 11:23:19 -0000 1.14.2.3 @@ -23,6 +23,7 @@ #include #include +#include /* For RTLD_PRIVATE_ERRNO. */ /* For Linux we can use the system call table in the header file /usr/include/asm/unistd.h Jakub