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.16-ports-merge-106-g48aec5b


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  48aec5b988f420a36ee4549865f9525584faa336 (commit)
       via  433851168652c0fa73168fdb7e9e19e4bd5df958 (commit)
       via  cd97c9668814f7ec6d03e3c7e3653a92b97651e6 (commit)
      from  09c0ee5f8c2e52ff64347c39a586e8a23b9421e5 (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=48aec5b988f420a36ee4549865f9525584faa336

commit 48aec5b988f420a36ee4549865f9525584faa336
Author: Roland McGrath <roland@hack.frob.com>
Date:   Wed Aug 1 10:48:17 2012 -0700

    Generic sys/param.h fixes for missing SYMLOOP_MAX or NGROUPS_MAX.

diff --git a/ChangeLog b/ChangeLog
index 63a3520..04efecf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2012-08-01  Roland McGrath  <roland@hack.frob.com>
 
+	* sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
+	(MAXSYMLINKS): Define only if [SYMLOOP_MAX].
+
 	* misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
 	Define mkstemp64 as an alias.
 	* misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=433851168652c0fa73168fdb7e9e19e4bd5df958

commit 433851168652c0fa73168fdb7e9e19e4bd5df958
Author: Roland McGrath <roland@hack.frob.com>
Date:   Wed Aug 1 10:31:27 2012 -0700

    foo

diff --git a/sysdeps/generic/sys/param.h b/sysdeps/generic/sys/param.h
index f6e9f43..c829e97 100644
--- a/sysdeps/generic/sys/param.h
+++ b/sysdeps/generic/sys/param.h
@@ -35,8 +35,12 @@
    for the values which are not statically limited, such as NOFILE.  */
 
 #define NBBY            CHAR_BIT
-#define NGROUPS         NGROUPS_MAX
-#define MAXSYMLINKS     SYMLOOP_MAX
+#ifdef NGROUPS_MAX
+# define NGROUPS         NGROUPS_MAX
+#endif
+#ifdef SYMLOOP_MAX
+# define MAXSYMLINKS     SYMLOOP_MAX
+#endif
 #define CANBSIZ         MAX_CANON /* XXX ? */
 
 /* ARG_MAX is unlimited, but we define NCARGS for BSD programs that want to

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

Summary of changes:
 ChangeLog                                       |   19 +++++++++++++++++++
 misc/mkostemp.c                                 |    6 +++++-
 misc/mkostemp64.c                               |    7 ++++++-
 misc/mkstemp.c                                  |    6 +++++-
 misc/mkstemp64.c                                |    7 ++++++-
 sysdeps/generic/sys/param.h                     |    8 ++++++--
 sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c   |    1 -
 sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c |    1 -
 sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c    |    1 -
 sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c  |    1 -
 sysdeps/wordsize-64/mkostemp.c                  |    3 ---
 sysdeps/wordsize-64/mkostemp64.c                |    1 -
 sysdeps/wordsize-64/mkstemp.c                   |    3 ---
 sysdeps/wordsize-64/mkstemp64.c                 |    1 -
 14 files changed, 47 insertions(+), 18 deletions(-)
 delete mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c
 delete mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c
 delete mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c
 delete mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c
 delete mode 100644 sysdeps/wordsize-64/mkostemp.c
 delete mode 100644 sysdeps/wordsize-64/mkostemp64.c
 delete mode 100644 sysdeps/wordsize-64/mkstemp.c
 delete mode 100644 sysdeps/wordsize-64/mkstemp64.c


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]