From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 392 invoked by alias); 20 May 2003 19:32:32 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 382 invoked from network); 20 May 2003 19:32:32 -0000 Received: from unknown (HELO aamail.fame.com) (192.88.67.254) by sources.redhat.com with SMTP; 20 May 2003 19:32:32 -0000 Received: from wssfd.fame.com (wssfd.fame.com [192.168.47.8]) by aamail.fame.com (8.11.3/8.11.3) with ESMTP id h4KJWUx10391 for ; Tue, 20 May 2003 15:32:31 -0400 To: binutils@sources.redhat.com Subject: [BFD PATCH] File truncation in objcopy for hppa2.0w-hp-hpux11.11 in binutils-2.13.1 References: From: sdowning@fame.com (Stuart F. Downing) Date: Tue, 20 May 2003 19:32:00 -0000 In-Reply-To: Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2003-05/txt/msg00599.txt.bz2 --=-=-= Content-length: 86 Thought PATCH in the subject was appropriate, sorry for the spam. -- Stuart Downing --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=binutils-2.13.1-hppa2x-PA_2_0.patch Content-length: 1150 Index: src/bfd/ChangeLog =================================================================== RCS file: /cvs/src/src/bfd/ChangeLog,v retrieving revision 1.1598.2.41 diff -u -r1.1598.2.41 ChangeLog --- src/bfd/ChangeLog 7 Nov 2002 22:30:54 -0000 1.1598.2.41 +++ src/bfd/ChangeLog 20 May 2003 19:24:17 -0000 @@ -1,3 +1,7 @@ +2003-05-20 Stuart F. Downing + + * configure.host: Add hppa2*-*-hpux* with -DPA_2_0 + 2002-11-07 Daniel Jacobowitz * configure.in: Bump version and set is_release. Index: src/bfd/configure.host =================================================================== RCS file: /cvs/src/src/bfd/configure.host,v retrieving revision 1.9 diff -u -r1.9 configure.host --- src/bfd/configure.host 22 Jan 2002 00:47:21 -0000 1.9 +++ src/bfd/configure.host 20 May 2003 19:24:17 -0000 @@ -23,6 +23,7 @@ hppa*64*-*-hpux*) HDEFINES=-DHOST_HPPAHPUX; host64=true; HOST_64BIT_TYPE=long ;; +hppa2*-*-hpux*) HDEFINES="-DHOST_HPPAHPUX -DPA_2_0" ;; hppa*-*-hpux*) HDEFINES=-DHOST_HPPAHPUX ;; hppa*-*-hiux*) HDEFINES=-DHOST_HPPAHPUX ;; hppa*64*-*-linux*) host64=true; HOST_64BIT_TYPE=long ;; --=-=-=--