From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28648 invoked by alias); 10 May 2002 20:59:46 -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 28614 invoked from network); 10 May 2002 20:59:44 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 10 May 2002 20:59:44 -0000 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.11.6/8.11.6) id g4AKxTI08268; Fri, 10 May 2002 22:59:29 +0200 Date: Fri, 10 May 2002 13:59:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix ia64 build Message-ID: <20020510225928.G1551@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.2.5.1i X-SW-Source: 2002-05/txt/msg00015.txt.bz2 Hi! 2002-05-10 Jakub Jelinek * sysdeps/ia64/Makefile: Remove extra endif. * sysdeps/ia64/ia64libgcc.S (__divsf3): Fix typo in symbol version. --- libc/sysdeps/ia64/Makefile 10 May 2002 09:54:45 -0000 1.1.1.7 +++ libc/sysdeps/ia64/Makefile 10 May 2002 14:35:15 -0000 1.2 @@ -16,7 +16,6 @@ sysdep_routines += ia64libgcc shared-only-routines += ia64libgcc endif endif -endif ifeq ($(subdir),elf) sysdep-dl-routines += dl-symaddr dl-fptr --- libc/sysdeps/ia64/ia64libgcc.S 10 May 2002 09:54:45 -0000 1.1.1.1 +++ libc/sysdeps/ia64/ia64libgcc.S 10 May 2002 15:03:08 -0000 1.2 @@ -102,7 +102,7 @@ ENTRY(___divsf3) br.ret.sptk rp ;; END(___divsf3) - .symver ___divsf3, __divsf3@GLIBC2.2 + .symver ___divsf3, __divsf3@GLIBC_2.2 /* __divdi3 Compute a 64-bit integer quotient. Jakub