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.21-212-g661a7db


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  661a7dbad01ea6a55052e0225c88116c873c0bf4 (commit)
      from  6a9350c854425fe7410c7733a5e172273fc3e81d (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=661a7dbad01ea6a55052e0225c88116c873c0bf4

commit 661a7dbad01ea6a55052e0225c88116c873c0bf4
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Mar 22 17:27:51 2015 +0100

    Fix visibility of EXTPROC macro
    
    * bits/termios.h [!__USE_MISC] (EXTPROC): Do not define.

diff --git a/ChangeLog b/ChangeLog
index 2081882..6a53c06 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,7 @@
 	* nscd/nscd-client.h: Include <time.h>.
 	* sysdeps/mach/hurd/dl-sysdep.c (fmh): Pass vm_offset_t dummy
 	9th parameter to __vm_region instead of int.
+	* bits/termios.h [!__USE_MISC] (EXTPROC): Do not define.
 
 2015-03-19  Roland McGrath  <roland@hack.frob.com>
 
diff --git a/bits/termios.h b/bits/termios.h
index 8a2fcaf..460729d 100644
--- a/bits/termios.h
+++ b/bits/termios.h
@@ -230,7 +230,9 @@ struct termios
 #endif
 #define	_IEXTEN	(1 << 10)	/* Enable DISCARD and LNEXT.  */
 #define	IEXTEN	_IEXTEN
-#define	EXTPROC	(1 << 11)	/* External processing.  */
+#ifdef	__USE_MISC
+# define EXTPROC	(1 << 11)	/* External processing.  */
+#endif
 #define	_TOSTOP	(1 << 22)	/* Send SIGTTOU for background output.  */
 #define	TOSTOP	_TOSTOP
 #ifdef	__USE_MISC

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

Summary of changes:
 ChangeLog      |    1 +
 bits/termios.h |    4 +++-
 2 files changed, 4 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]