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.17-621-gba85394


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  ba8539473296645ef5e710e506534682f9eb5572 (commit)
      from  8347c74cc5c972aa9e57747177b1f5f4b1cbcac8 (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=ba8539473296645ef5e710e506534682f9eb5572

commit ba8539473296645ef5e710e506534682f9eb5572
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Wed May 8 00:00:46 2013 +0200

    Only defined DEV_BSIZE if not already defined.

diff --git a/ChangeLog b/ChangeLog
index de6646b..fa12634 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-07  Aurelien Jarno <aurelien@aurel32.net>
+
+	* misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
+
 2013-05-07  Roland McGrath  <roland@hack.frob.com>
 
 	* sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
diff --git a/misc/sys/param.h b/misc/sys/param.h
index 5e6353d..d257ec7 100644
--- a/misc/sys/param.h
+++ b/misc/sys/param.h
@@ -71,7 +71,9 @@
 
 
 /* Unit of `st_blocks'.  */
-#define DEV_BSIZE       512
+#ifndef DEV_BSIZE
+# define DEV_BSIZE	512
+#endif
 
 
 /* Bit map related macros.  */

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

Summary of changes:
 ChangeLog        |    4 ++++
 misc/sys/param.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]