|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-3.2-testing] Constrain the checks for GCC/ANSI to j
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1206983297 -3600
# Node ID 6341a28c8a4541dfae470760ac6300f72b95fc44
# Parent 8d13d45d9e243d788c10889e6512dd4d8a4dff08
Constrain the checks for GCC/ANSI to just those header files that
require it.
Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
xen-unstable changeset: 17327:da9bd2e81288225c8836e8083430ebcadf696f98
xen-unstable date: Mon Mar 31 18:05:18 2008 +0100
---
xen/include/public/arch-ia64.h | 4 ++++
xen/include/public/hvm/save.h | 4 ++++
xen/include/public/xen-compat.h | 4 ----
3 files changed, 8 insertions(+), 4 deletions(-)
diff -r 8d13d45d9e24 -r 6341a28c8a45 xen/include/public/arch-ia64.h
--- a/xen/include/public/arch-ia64.h Mon Mar 31 17:50:33 2008 +0100
+++ b/xen/include/public/arch-ia64.h Mon Mar 31 18:08:17 2008 +0100
@@ -27,6 +27,10 @@
#ifndef __HYPERVISOR_IF_IA64_H__
#define __HYPERVISOR_IF_IA64_H__
+
+#if !defined(__GNUC__) || defined(__STRICT_ANSI__)
+#error "Anonymous structs/unions are a GNU extension."
+#endif
/* Structural guest handles introduced in 0x00030201. */
#if __XEN_INTERFACE_VERSION__ >= 0x00030201
diff -r 8d13d45d9e24 -r 6341a28c8a45 xen/include/public/hvm/save.h
--- a/xen/include/public/hvm/save.h Mon Mar 31 17:50:33 2008 +0100
+++ b/xen/include/public/hvm/save.h Mon Mar 31 18:08:17 2008 +0100
@@ -39,6 +39,10 @@
* Internal mechanisms should be kept in Xen-private headers.
*/
+#if !defined(__GNUC__) || defined(__STRICT_ANSI__)
+#error "Anonymous structs/unions are a GNU extension."
+#endif
+
/*
* Each entry is preceded by a descriptor giving its type and length
*/
diff -r 8d13d45d9e24 -r 6341a28c8a45 xen/include/public/xen-compat.h
--- a/xen/include/public/xen-compat.h Mon Mar 31 17:50:33 2008 +0100
+++ b/xen/include/public/xen-compat.h Mon Mar 31 18:08:17 2008 +0100
@@ -48,8 +48,4 @@
#define XEN_GUEST_HANDLE_00030205(type) type *
#endif
-#if defined(__GNUC__) && defined(__STRICT_ANSI__)
-#error "These headers files use GNU extensions when built with GCC."
-#endif
-
#endif /* __XEN_PUBLIC_XEN_COMPAT_H__ */
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-3.2-testing] Constrain the checks for GCC/ANSI to just those header files that,
Xen patchbot-3.2-testing <=
|
|
|
|
|