From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3646 invoked by alias); 8 Mar 2004 17:21:03 -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 3606 invoked from network); 8 Mar 2004 17:21:02 -0000 Received: from unknown (HELO e35.co.us.ibm.com) (32.97.110.133) by sources.redhat.com with SMTP; 8 Mar 2004 17:21:02 -0000 Received: from westrelay02.boulder.ibm.com (westrelay02.boulder.ibm.com [9.17.195.11]) by e35.co.us.ibm.com (8.12.10/8.12.2) with ESMTP id i28HL1F4050916; Mon, 8 Mar 2004 12:21:01 -0500 Received: from us.ibm.com (d03av02.boulder.ibm.com [9.17.193.82]) by westrelay02.boulder.ibm.com (8.12.10/NCO/VER6.6) with ESMTP id i28HKxKr196252; Mon, 8 Mar 2004 10:21:00 -0700 Message-ID: <404CAB15.2090806@us.ibm.com> Date: Mon, 08 Mar 2004 17:21:00 -0000 From: Steve Munroe Reply-To: sjmunroe@vnet.ibm.com Organization: IBM LTC User-Agent: Mozilla/5.0 (X11; U; Linux ppc64; en-US; rv:1.4) Gecko/20030922 MIME-Version: 1.0 To: libc-hacker@sources.redhat.com, Andreas Jaeger Subject: [PATCH] PPC64 dl-machine.c change to use GLRO Content-Type: multipart/mixed; boundary="------------020300020409020208000907" X-SW-Source: 2004-03/txt/msg00024.txt.bz2 This is a multi-part message in MIME format. --------------020300020409020208000907 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 92 Found this builf break in this morning cvs. Need to change INTUSE to GLRO for dl-machine.c --------------020300020409020208000907 Content-Type: text/plain; name="ppc64-dl-machine-20040308.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ppc64-dl-machine-20040308.txt" Content-length: 657 2004-03-08 Steven Munroe * sysdeps/powerpc/powerpc64/dl-machine.c(_dl_reloc_overflow): Replace INTUSE with GLRO. diff -urN libc23-cvstip-20040308/sysdeps/powerpc/powerpc64/dl-machine.c libc23/sysdeps/powerpc/powerpc64/dl-machine.c --- libc23-cvstip-20040308/sysdeps/powerpc/powerpc64/dl-machine.c 2003-05-15 23:20:52.000000000 -0500 +++ libc23/sysdeps/powerpc/powerpc64/dl-machine.c 2004-03-08 10:22:46.000000000 -0600 @@ -44,5 +44,5 @@ t = stpcpy (t, "'"); } t = stpcpy (t, " out of range"); - INTUSE (_dl_signal_error) (0, map->l_name, NULL, buffer); + GLRO(dl_signal_error) (0, map->l_name, NULL, buffer); } --------------020300020409020208000907--