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-120-g357679d


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  357679d2fc567e8d6c030cf0f0fd54f6c31e23a3 (commit)
      from  8b954ab9b808a51d8cf6a90c7d1d46a3366e3274 (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=357679d2fc567e8d6c030cf0f0fd54f6c31e23a3

commit 357679d2fc567e8d6c030cf0f0fd54f6c31e23a3
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Sat Jan 12 18:52:41 2013 -0500

    scsi/sg.h: include stddef.h for size_t
    
    This header uses size_t but doesn't include stddef.h for it.  So when
    packages happen to include this before any header that defines size_t,
    they get a build failure.
    
    Reviewed-by: Carlos O'Donell <codonell@redhat.com>
    Signed-off-by: Mike Frysinger <vapier@gentoo.org>

diff --git a/ChangeLog b/ChangeLog
index 0f5a017..d202665 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-15  Mike Frysinger  <vapier@gentoo.org>
+
+	* sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
+
 2013-01-14  David S. Miller  <davem@davemloft.net>
 
 	* sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
diff --git a/sysdeps/unix/sysv/linux/scsi/sg.h b/sysdeps/unix/sysv/linux/scsi/sg.h
index 9cad76e..68f57f2 100644
--- a/sysdeps/unix/sysv/linux/scsi/sg.h
+++ b/sysdeps/unix/sysv/linux/scsi/sg.h
@@ -26,6 +26,8 @@
 #define _SCSI_SG_H	1
 
 #include <features.h>
+#define __need_size_t
+#include <stddef.h>
 
 
 /* New interface introduced in the 3.x SG drivers follows */

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

Summary of changes:
 ChangeLog                         |    4 ++++
 sysdeps/unix/sysv/linux/scsi/sg.h |    2 ++
 2 files changed, 6 insertions(+), 0 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]