public inbox for libc-ports@sourceware.org
 help / color / mirror / Atom feed
From: Mike Frysinger <vapier@gentoo.org>
To: libc-ports@sourceware.org
Subject: [PATCH 09/21] ia64: convert <stdio-common/_itoa.h> to <_itoa.h>
Date: Sat, 21 Apr 2012 04:35:00 -0000	[thread overview]
Message-ID: <1334982948-12167-6-git-send-email-vapier@gentoo.org> (raw)
In-Reply-To: <1334982948-12167-1-git-send-email-vapier@gentoo.org>

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 \
	'/<stdio-common._itoa.h>/s:<stdio-common/_itoa.h>:<_itoa.h>:' {} +

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

2012-04-17  Mike Frysinger  <vapier@gentoo.org>

	* 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 <drepper@cygnus.com>, 2001.
 
@@ -22,7 +22,7 @@
 
 #include <string.h>
 #include <sys/param.h>
-#include <stdio-common/_itoa.h>
+#include <_itoa.h>
 #include <ia64intrin.h>
 
 /* 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 <jakub@redhat.com>, 2004.
 
@@ -19,7 +19,7 @@
 
 #include <string.h>
 #include <sys/uio.h>
-#include <stdio-common/_itoa.h>
+#include <_itoa.h>
 
 /* We will print the register dump in this format:
 
-- 
1.7.8.5

  parent reply	other threads:[~2012-04-21  4:35 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-21  4:35 [PATCH 00/21] add ia64 to ports & update to latest tree Mike Frysinger
2012-04-21  4:35 ` [PATCH 04/21] ia64: fix license text to "Lesser" not "Library" Mike Frysinger
2012-04-21  4:35   ` [PATCH 05/21] ia64: update include paths Mike Frysinger
2012-04-21  4:35   ` [PATCH 08/21] ia64: initfini.c -> crt{i,n}.S split Mike Frysinger
2012-04-21  4:35   ` [PATCH 14/21] ia64: math: add __scalbn* aliases Mike Frysinger
2012-04-21  4:35   ` [PATCH 12/21] ia64: math: stub out new e_rem_pio2l func Mike Frysinger
2012-04-21  4:35   ` Mike Frysinger [this message]
2012-04-21  4:35   ` [PATCH 06/21] ia64: add split-out settings into dedicated files Mike Frysinger
2012-04-21  4:35   ` [PATCH 15/21] ia64: add MAP_{STACK,HUGETLB} to bits/mman.h Mike Frysinger
2012-04-21  4:36   ` [PATCH 19/21] ia64: add new GET_ADDR_PARAM define Mike Frysinger
2012-04-21  4:36   ` [PATCH 20/21] ia64: define __ASSUME_ACCEPT4 Mike Frysinger
2012-04-21  4:36   ` [PATCH 13/21] ia64: drop __STDC__ handlings Mike Frysinger
2012-04-21  4:36   ` [PATCH 16/21] ia64: pthread_attr_t type mangling Mike Frysinger
2012-04-21  4:40   ` [PATCH 07/21] ia64: merge sysdeps/ia64/elf/ into sysdeps/ia64/ Mike Frysinger
2012-04-21  4:49     ` Mike Frysinger
2012-04-21  4:45   ` [PATCH 18/21] ia64: splitting of 16bit funcs out of byteswap.h and into byteswap-16.h Mike Frysinger
2012-04-21  4:45   ` [PATCH 21/21] ia64: math: rename s_ilogbl.S to e_ilogbl.S Mike Frysinger
2012-04-21  4:47     ` Mike Frysinger
2012-04-21  4:45   ` [PATCH 10/21] ia64: convert "math{,_private}.h" to <math{,_private}.h> Mike Frysinger
2012-04-21  4:45   ` [PATCH 17/21] ia64: ucontext.h: drop __cplusplus Mike Frysinger
2012-04-21  5:00   ` [PATCH 11/21] ia64: convert __const to const Mike Frysinger
2012-04-26  1:58   ` [PATCH 04/21] ia64: fix license text to "Lesser" not "Library" Carlos O'Donell
2012-04-26  3:39   ` Mike Frysinger
2012-04-21 15:57 ` [PATCH 01/21] ia64: move from main tree Mike Frysinger
2012-04-21 21:42   ` Carlos O'Donell
2012-04-22 15:36     ` Mike Frysinger
2012-04-22 15:52       ` Carlos O'Donell
2012-04-22 15:56         ` Mike Frysinger
2012-04-22 18:19           ` Carlos O'Donell
2012-04-22 15:59   ` Mike Frysinger
2012-04-22 17:25     ` Mike Frysinger
2012-04-22 18:20       ` Carlos O'Donell
2012-04-22 19:15         ` Mike Frysinger
2012-04-22 19:48           ` Carlos O'Donell
2012-04-21 16:02 ` [PATCH 02/21] ia64: strip trailing whitespace Mike Frysinger
2012-04-21 21:47   ` Carlos O'Donell
2012-04-22  6:12     ` Andreas Jaeger
2012-04-22 16:00   ` Mike Frysinger
2012-04-22 19:16     ` Mike Frysinger
2012-04-21 16:03 ` [PATCH 03/21] ia64: update FSF license address to URL Mike Frysinger
2012-04-22 16:01   ` Mike Frysinger
2012-04-23  3:28     ` Mike Frysinger
2012-04-24  0:02 ` [PATCH 00/21] add ia64 to ports & update to latest tree Mike Frysinger
2012-04-24  1:43   ` Carlos O'Donell
2012-04-24  1:56     ` Mike Frysinger
2012-04-25  4:12       ` Carlos O'Donell
2012-04-26  3:36         ` Mike Frysinger
2012-04-26 13:03           ` Carlos O'Donell
2012-04-28  3:17 ` Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1334982948-12167-6-git-send-email-vapier@gentoo.org \
    --to=vapier@gentoo.org \
    --cc=libc-ports@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).