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.28.9000-330-g3a67e81


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  3a67e81d7527363a96af095a5af03b6201b82e9d (commit)
      from  4975f0c3d0131fdf697be0b1631c265e5fd39088 (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=3a67e81d7527363a96af095a5af03b6201b82e9d

commit 3a67e81d7527363a96af095a5af03b6201b82e9d
Author: Charles-Antoine Couret <charles-antoine.couret@essensium.com>
Date:   Thu Nov 29 17:56:55 2018 +0000

    argp: do not call _IO_fwide() if _LIBC is not defined
    
    _IO_fwide() is defined in libio.h file. This file is included only
    when _LIBC is defined.
    
    So, in case of compilation of these files without _LIBC definition,
    the compilation failed due to this unknown function.
    
    Now this function is called when libio.h file is included.
    
    (Change merged from gnulib.  Tested on x86_64.)
    
    	* argp/argp-fmtstream.c (__argp_fmtstream_update): Use [_LIBC]
    	conditional on calls to _IO_fwide and putwc_unlocked.  (Merge from
    	gnulib.)
    	* argp/argp-help.c (__argp_failure): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 7eaee6d..1551dc0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2018-11-29  Charles-Antoine Couret  <charles-antoine.couret@essensium.com>
+
+	* argp/argp-fmtstream.c (__argp_fmtstream_update): Use [_LIBC]
+	conditional on calls to _IO_fwide and putwc_unlocked.  (Merge from
+	gnulib.)
+	* argp/argp-help.c (__argp_failure): Likewise.
+
 2018-11-29  Mao Han  <han_mao@c-sky.com>
 
 	* elf/elf.h (EM_CSKY, R_CKCORE_NONE, R_CKCORE_ADDR32)
diff --git a/argp/argp-fmtstream.c b/argp/argp-fmtstream.c
index e43a0c7..e9e4c0e 100644
--- a/argp/argp-fmtstream.c
+++ b/argp/argp-fmtstream.c
@@ -149,9 +149,11 @@ __argp_fmtstream_update (argp_fmtstream_t fs)
 	      size_t i;
 	      for (i = 0; i < pad; i++)
 		{
+#ifdef _LIBC
 		  if (_IO_fwide (fs->stream, 0) > 0)
 		    putwc_unlocked (L' ', fs->stream);
 		  else
+#endif
 		    putc_unlocked (' ', fs->stream);
 		}
 	    }
@@ -312,9 +314,11 @@ __argp_fmtstream_update (argp_fmtstream_t fs)
 	      *nl++ = ' ';
 	  else
 	    for (i = 0; i < fs->wmargin; ++i)
+#ifdef _LIBC
 	      if (_IO_fwide (fs->stream, 0) > 0)
 		putwc_unlocked (L' ', fs->stream);
 	      else
+#endif
 		putc_unlocked (' ', fs->stream);
 
 	  /* Copy the tail of the original buffer into the current buffer
diff --git a/argp/argp-help.c b/argp/argp-help.c
index 2b6b077..a172603 100644
--- a/argp/argp-help.c
+++ b/argp/argp-help.c
@@ -1873,9 +1873,11 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
 #endif
 	    }
 
+#ifdef _LIBC
 	  if (_IO_fwide (stream, 0) > 0)
 	    putwc_unlocked (L'\n', stream);
 	  else
+#endif
 	    putc_unlocked ('\n', stream);
 
 #if _LIBC || (HAVE_FLOCKFILE && HAVE_FUNLOCKFILE)

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

Summary of changes:
 ChangeLog             |    7 +++++++
 argp/argp-fmtstream.c |    4 ++++
 argp/argp-help.c      |    2 ++
 3 files changed, 13 insertions(+), 0 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]