This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.17-760-g869378a


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  869378a5bf1d415f52c14d9697b886d8143a73e1 (commit)
      from  840e2943e8ae020adfa7eafa7877f004e7ecada1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=869378a5bf1d415f52c14d9697b886d8143a73e1

commit 869378a5bf1d415f52c14d9697b886d8143a73e1
Author: Ryan S. Arnold <rsa@linux.vnet.ibm.com>
Date:   Wed Jun 5 10:28:33 2013 -0500

    Add #include <stdint.h> to locale/gen-translit.pl and fix C-translit.h.

diff --git a/ChangeLog b/ChangeLog
index 9a2a0c5..bda0096 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-06-05  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* locale/C-translit.h: Revert #include <stdint.h> because this is a
+	generated file.  Regenerate properly from gen-translit.pl.
+	* locale/gen-translit.pl: Add #include <stdint.h>.  This generates
+	locale/C-translit.h.
+
 2013-06-05  Andreas Schwab  <schwab@suse.de>
 
 	[BZ #15100]
diff --git a/locale/C-translit.h b/locale/C-translit.h
index 98f66e2..fdd4450 100644
--- a/locale/C-translit.h
+++ b/locale/C-translit.h
@@ -1,5 +1,4 @@
 #include <stdint.h>
-
 #define NTRANSLIT 1355
 static const uint32_t translit_from_idx[] =
 {
diff --git a/locale/gen-translit.pl b/locale/gen-translit.pl
index d44310b..5f30e30 100644
--- a/locale/gen-translit.pl
+++ b/locale/gen-translit.pl
@@ -53,6 +53,8 @@ while (<F>) {
   }
 }
 
+printf "#include <stdint.h>\n";
+
 printf "#define NTRANSLIT %d\n", $#froms + 1;
 
 printf "static const uint32_t translit_from_idx[] =\n{\n  ";

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |    7 +++++++
 locale/C-translit.h    |    1 -
 locale/gen-translit.pl |    2 ++
 3 files changed, 9 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]