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, fedora/master, updated. fedora/glibc-2.11.90-6-3-g9b0eb94


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, fedora/master has been updated
       via  9b0eb94309fd846536bae6b70aebcb6a66667742 (commit)
       via  2ee1283c60d2ce22a3e17bff4b83b6b7f26f4ba0 (commit)
       via  16ea7828d79a56277ceb945224ab7d40e7ac14d6 (commit)
      from  764b7aa164ffdaa2cca5bc4e0e4942ecad30f1b4 (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=9b0eb94309fd846536bae6b70aebcb6a66667742

commit 9b0eb94309fd846536bae6b70aebcb6a66667742
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Jan 11 15:48:43 2010 +0100

    2.11.90-7

diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index 2dc225d..6ebde6e 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -21,7 +21,7 @@
 Summary: The GNU libc libraries
 Name: glibc
 Version: %{glibcversion}
-Release: 6
+Release: 7
 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
 # Things that are linked directly into dynamically linked programs
 # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
@@ -1030,6 +1030,9 @@ rm -f *.filelist*
 %endif
 
 %changelog
+* Mon Jan 11 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-7
+- Fix build failure.
+
 * Mon Jan 11 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-6
 - Update from master.
   - POSIX conformance fixes (BZ#11125).

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

commit 2ee1283c60d2ce22a3e17bff4b83b6b7f26f4ba0
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Jan 11 11:19:01 2010 +0100

    Include <bits/stat.h> only once

diff --git a/ChangeLog b/ChangeLog
index 795be44..10db993 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2010-01-11  Andreas Schwab  <schwab@redhat.com>
 
+	* io/fcntl.h: Only include <bits/stat.h> once.
+	* io/sys/stat.h: Likewise.
+
 	* bits/confname.h: Add missing comma, remove trailing commas.
 
 2010-01-10  Ulrich Drepper  <drepper@redhat.com>
diff --git a/io/fcntl.h b/io/fcntl.h
index 4eb003b..d54fcf1 100644
--- a/io/fcntl.h
+++ b/io/fcntl.h
@@ -38,7 +38,10 @@ __BEGIN_DECLS
 # include <bits/types.h>         /* For __mode_t and __dev_t.  */
 # define __need_timespec
 # include <time.h>
-# include <bits/stat.h>
+# ifndef __bits_stat_h_included
+#  include <bits/stat.h>
+#  define __bits_stat_h_included
+# endif
 
 # define S_IFMT		__S_IFMT
 # define S_IFDIR	__S_IFDIR
diff --git a/io/sys/stat.h b/io/sys/stat.h
index c21801d..de9b5e8 100644
--- a/io/sys/stat.h
+++ b/io/sys/stat.h
@@ -104,7 +104,10 @@ typedef __blksize_t blksize_t;
 
 __BEGIN_DECLS
 
-#include <bits/stat.h>
+#ifndef __bits_stat_h_included
+# include <bits/stat.h>
+# define __bits_stat_h_included
+#endif
 
 #if defined __USE_BSD || defined __USE_MISC || defined __USE_XOPEN
 # define S_IFMT		__S_IFMT

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

commit 16ea7828d79a56277ceb945224ab7d40e7ac14d6
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Jan 11 11:17:47 2010 +0100

    Fix commas in enum definitions

diff --git a/ChangeLog b/ChangeLog
index 7363f39..795be44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-11  Andreas Schwab  <schwab@redhat.com>
+
+	* bits/confname.h: Add missing comma, remove trailing commas.
+
 2010-01-10  Ulrich Drepper  <drepper@redhat.com>
 
 	* sysdeps/unix/sysv/linux/bits/sigaction.h: SA_RESTART, SA_NODEFER,
diff --git a/bits/confname.h b/bits/confname.h
index b3c33a9..45fcafb 100644
--- a/bits/confname.h
+++ b/bits/confname.h
@@ -527,7 +527,7 @@ enum
 
     _SC_THREAD_ROBUST_PRIO_INHERIT,
 #define _SC_THREAD_ROBUST_PRIO_INHERIT	_SC_THREAD_ROBUST_PRIO_INHERIT
-    _SC_THREAD_ROBUST_PRIO_PROTECT,
+    _SC_THREAD_ROBUST_PRIO_PROTECT
 #define _SC_THREAD_ROBUST_PRIO_PROTECT	_SC_THREAD_ROBUST_PRIO_PROTECT
   };
 
@@ -667,11 +667,11 @@ enum
 #define _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS
     _CS_POSIX_V7_LPBIG_OFFBIG_LIBS,
 #define _CS_POSIX_V7_LPBIG_OFFBIG_LIBS _CS_POSIX_V7_LPBIG_OFFBIG_LIBS
-    _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS
+    _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS,
 #define _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS
 
     _CS_V6_ENV,
 #define _CS_V6_ENV			_CS_V6_ENV
-    _CS_V7_ENV,
+    _CS_V7_ENV
 #define _CS_V7_ENV			_CS_V7_ENV
   };

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

Summary of changes:
 ChangeLog            |    7 +++++++
 bits/confname.h      |    6 +++---
 fedora/glibc.spec.in |    5 ++++-
 io/fcntl.h           |    5 ++++-
 io/sys/stat.h        |    5 ++++-
 5 files changed, 22 insertions(+), 6 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]