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.10-341-g0d18040


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  0d1804061a2c27ffe511a5f9df572ad9748d8219 (commit)
      from  ae0f0dbd0e6205af474cd8e5d5f43ff7a7e46eec (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0d1804061a2c27ffe511a5f9df572ad9748d8219

commit 0d1804061a2c27ffe511a5f9df572ad9748d8219
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 27 16:26:59 2009 -0700

    Fix IXANY feature macro conditions.

diff --git a/ChangeLog b/ChangeLog
index bdc4b4d..5dcdbfc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+	* bits/termios.h [__USE_UNIX98] (IXANY): Define macro.
+
 2009-09-20  Andreas Schwab  <schwab@linux-m68k.org>
 
 	* iconvdata/iso646.c (gconv_init): Correctly initialize the
diff --git a/bits/termios.h b/bits/termios.h
index 293d0a6..b697dd1 100644
--- a/bits/termios.h
+++ b/bits/termios.h
@@ -124,8 +124,10 @@ struct termios
 #define	ICRNL	(1 << 8)	/* Map CR to NL on input.  */
 #define	IXON	(1 << 9)	/* Enable start/stop output control.  */
 #define	IXOFF	(1 << 10)	/* Enable start/stop input control.  */
-#ifdef	__USE_BSD
+#if defined __USE_BSD || defined __USE_UNIX98
 # define IXANY	(1 << 11)	/* Any character will restart after stop.  */
+#endif
+#ifdef	__USE_BSD
 # define IMAXBEL (1 << 13)	/* Ring bell when input queue is full.  */
 #endif
 #ifdef __USE_GNU

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

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