From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6054 invoked by alias); 14 Apr 2003 13:36:22 -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 6035 invoked from network); 14 Apr 2003 13:36:22 -0000 Received: from unknown (HELO localhost.localdomain) (195.113.19.66) by sources.redhat.com with SMTP; 14 Apr 2003 13:36:22 -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 h3EDaJqO002374; Mon, 14 Apr 2003 15:36:19 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id h3EDaJeX002369; Mon, 14 Apr 2003 15:36:19 +0200 Date: Mon, 14 Apr 2003 13:36:00 -0000 From: Jakub Jelinek To: Ulrich Drepper , Roland McGrath Cc: Glibc hackers Subject: [PATCH] Fix sparc64 build Message-ID: <20030414133619.GM16629@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-04/txt/msg00041.txt.bz2 Hi! ret_NOERRNO was not defined on sparc64... 2003-04-14 Jakub Jelinek * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h (ret_NOERRNO): Define. --- libc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h.jj 2003-04-01 04:21:01.000000000 -0500 +++ libc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h 2003-04-13 18:51:30.000000000 -0400 @@ -122,6 +122,7 @@ SYSCALL_ERROR_HANDLER_ENTRY(__syscall_er /* Careful here! This "ret" define can interfere; use jmpl if unsure. */ #define ret retl; nop +#define ret_NOERRNO retl; nop #define r0 %o0 #define r1 %o1 #define MOVE(x,y) mov x, y Jakub