From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1205 invoked by alias); 21 Apr 2012 04:35:51 -0000 Received: (qmail 1001 invoked by uid 22791); 21 Apr 2012 04:35:49 -0000 X-SWARE-Spam-Status: No, hits=-5.2 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 21 Apr 2012 04:35:16 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id EAD321B40D5 for ; Sat, 21 Apr 2012 04:34:43 +0000 (UTC) From: Mike Frysinger To: libc-ports@sourceware.org Subject: [PATCH 09/21] ia64: convert to <_itoa.h> Date: Sat, 21 Apr 2012 04:35:00 -0000 Message-Id: <1334982948-12167-6-git-send-email-vapier@gentoo.org> In-Reply-To: <1334982948-12167-1-git-send-email-vapier@gentoo.org> References: <1334982921-12113-1-git-send-email-vapier@gentoo.org> <1334982948-12167-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-04/txt/msg00103.txt.bz2 The main tree relocated the _itoa.h header, so update our include paths to match. Processed with a simple sed script: find `find sysdeps/ -name ia64` -type f -exec sed -i \ '//s::<_itoa.h>:' {} + Signed-off-by: Mike Frysinger 2012-04-17 Mike Frysinger * sysdeps/ia64/hp-timing.h: Change stdio-common/_itoa.h to _itoa.h. * sysdeps/unix/sysv/linux/ia64/register-dump.h: Likewise. --- sysdeps/ia64/hp-timing.h | 4 ++-- sysdeps/unix/sysv/linux/ia64/register-dump.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sysdeps/ia64/hp-timing.h b/sysdeps/ia64/hp-timing.h index 2ee6237..93f091a 100644 --- a/sysdeps/ia64/hp-timing.h +++ b/sysdeps/ia64/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. IA-64 version. - Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2001-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. @@ -22,7 +22,7 @@ #include #include -#include +#include <_itoa.h> #include /* The macros defined here use the timestamp counter in IA-64. They diff --git a/sysdeps/unix/sysv/linux/ia64/register-dump.h b/sysdeps/unix/sysv/linux/ia64/register-dump.h index 42b99c3..ac34a81 100644 --- a/sysdeps/unix/sysv/linux/ia64/register-dump.h +++ b/sysdeps/unix/sysv/linux/ia64/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. @@ -19,7 +19,7 @@ #include #include -#include +#include <_itoa.h> /* We will print the register dump in this format: -- 1.7.8.5