From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6284 invoked by alias); 1 Jun 2003 22:34:34 -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 6211 invoked from network); 1 Jun 2003 22:34:33 -0000 Received: from unknown (HELO localhost.localdomain) (195.113.19.66) by sources.redhat.com with SMTP; 1 Jun 2003 22:34:33 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by localhost.localdomain (8.12.8/8.12.8) with ESMTP id h51MYUqO020112; Mon, 2 Jun 2003 00:34:30 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id h51MYUFn020110; Mon, 2 Jun 2003 00:34:30 +0200 Date: Sun, 01 Jun 2003 22:34:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix --without-tls IA-32 glibc build Message-ID: <20030601223430.GP24872@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: 2003-06/txt/msg00001.txt.bz2 Hi! If --without-tls, tls.h doesn't include sysdep.h and we die with dl-runtime.c:239: syntax error before "CFI_STARTPROC" 2003-06-01 Jakub Jelinek * sysdeps/i386/dl-machine.h: Include sysdep.h. --- libc/sysdeps/i386/dl-machine.h 1 Jun 2003 21:41:31 -0000 1.1.1.34 +++ libc/sysdeps/i386/dl-machine.h 1 Jun 2003 22:07:51 -0000 1.27 @@ -23,7 +23,7 @@ #define ELF_MACHINE_NAME "i386" #include - +#include #include /* Return nonzero iff ELF header is compatible with the running host. */ Jakub