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.19-349-g0cdddc2


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  0cdddc25a47509262a9a55a343395971b492b0fa (commit)
      from  6426d77e47f011086dea324801e5c0a612455831 (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=0cdddc25a47509262a9a55a343395971b492b0fa

commit 0cdddc25a47509262a9a55a343395971b492b0fa
Author: Steve Ellcey <sellcey@mips.com>
Date:   Thu May 1 10:22:35 2014 -0700

    2014-05-01  Steve Ellcey  <sellcey@mips.com>
    
    	* intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
    	* iconv/gconv_simple.c (ONE_DIRECTION): Define.
    	* iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
    	* iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.

diff --git a/ChangeLog b/ChangeLog
index 4a13b22..08ec932 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2014-05-01  Steve Ellcey  <sellcey@mips.com>
 
+	* intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
+	* iconv/gconv_simple.c (ONE_DIRECTION): Define.
+	* iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
+	* iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
+
+2014-05-01  Steve Ellcey  <sellcey@mips.com>
+
 	* stdlib/longlong.h: Updated from GCC.
 
 2014-05-01  Will Newton  <will.newton@linaro.org>
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c
index f357713..4ed4505 100644
--- a/iconv/gconv_simple.c
+++ b/iconv/gconv_simple.c
@@ -68,6 +68,7 @@ __gconv_btwoc_ascii (struct __gconv_step *step, unsigned char c)
 #define FROM_LOOP		internal_ucs4_loop
 #define TO_LOOP			internal_ucs4_loop /* This is not used.  */
 #define FUNCTION_NAME		__gconv_transform_internal_ucs4
+#define ONE_DIRECTION		0
 
 
 static inline int
@@ -222,6 +223,7 @@ internal_ucs4_loop_single (struct __gconv_step *step,
 #define FROM_LOOP		ucs4_internal_loop
 #define TO_LOOP			ucs4_internal_loop /* This is not used.  */
 #define FUNCTION_NAME		__gconv_transform_ucs4_internal
+#define ONE_DIRECTION		0
 
 
 static inline int
@@ -433,6 +435,7 @@ ucs4_internal_loop_single (struct __gconv_step *step,
 #define FROM_LOOP		internal_ucs4le_loop
 #define TO_LOOP			internal_ucs4le_loop /* This is not used.  */
 #define FUNCTION_NAME		__gconv_transform_internal_ucs4le
+#define ONE_DIRECTION		0
 
 
 static inline int
@@ -590,6 +593,7 @@ internal_ucs4le_loop_single (struct __gconv_step *step,
 #define FROM_LOOP		ucs4le_internal_loop
 #define TO_LOOP			ucs4le_internal_loop /* This is not used.  */
 #define FUNCTION_NAME		__gconv_transform_ucs4le_internal
+#define ONE_DIRECTION		0
 
 
 static inline int
diff --git a/iconv/skeleton.c b/iconv/skeleton.c
index 1908949..73dc186 100644
--- a/iconv/skeleton.c
+++ b/iconv/skeleton.c
@@ -163,11 +163,6 @@
 # endif
 #endif
 
-#ifndef ONE_DIRECTION
-# define ONE_DIRECTION 0
-#endif
-
-
 /* How many bytes are needed at most for the from-charset.  */
 #ifndef MAX_NEEDED_FROM
 # define MAX_NEEDED_FROM	MIN_NEEDED_FROM
diff --git a/iconvdata/8bit-gap.c b/iconvdata/8bit-gap.c
index b33a6ea..3bd7149 100644
--- a/iconvdata/8bit-gap.c
+++ b/iconvdata/8bit-gap.c
@@ -42,6 +42,7 @@ struct gap
 #define DEFINE_FINI		1
 #define MIN_NEEDED_FROM		1
 #define MIN_NEEDED_TO		4
+#define ONE_DIRECTION		0
 
 
 /* First define the conversion function from the 8bit charset to UCS4.  */
diff --git a/iconvdata/8bit-generic.c b/iconvdata/8bit-generic.c
index 20066aa..efc0fd5 100644
--- a/iconvdata/8bit-generic.c
+++ b/iconvdata/8bit-generic.c
@@ -26,6 +26,7 @@
 #define DEFINE_FINI		1
 #define MIN_NEEDED_FROM		1
 #define MIN_NEEDED_TO		4
+#define ONE_DIRECTION		0
 
 
 /* First define the conversion function from the 8bit charset to UCS4.  */

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

Summary of changes:
 ChangeLog                |    7 +++++++
 iconv/gconv_simple.c     |    4 ++++
 iconv/skeleton.c         |    5 -----
 iconvdata/8bit-gap.c     |    1 +
 iconvdata/8bit-generic.c |    1 +
 5 files changed, 13 insertions(+), 5 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]