WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] Constrain the checks for GCC/ANSI to just

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] Constrain the checks for GCC/ANSI to just those header files that
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 01 Apr 2008 00:30:12 -0700
Delivery-date: Tue, 01 Apr 2008 00:30:21 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1206983118 -3600
# Node ID da9bd2e81288225c8836e8083430ebcadf696f98
# Parent  615ee2933137e057e625ffdb9c84ace56d07881b
Constrain the checks for GCC/ANSI to just those header files that
require it.
Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
---
 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 615ee2933137 -r da9bd2e81288 xen/include/public/arch-ia64.h
--- a/xen/include/public/arch-ia64.h    Mon Mar 31 17:43:18 2008 +0100
+++ b/xen/include/public/arch-ia64.h    Mon Mar 31 18:05:18 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 615ee2933137 -r da9bd2e81288 xen/include/public/hvm/save.h
--- a/xen/include/public/hvm/save.h     Mon Mar 31 17:43:18 2008 +0100
+++ b/xen/include/public/hvm/save.h     Mon Mar 31 18:05:18 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 615ee2933137 -r da9bd2e81288 xen/include/public/xen-compat.h
--- a/xen/include/public/xen-compat.h   Mon Mar 31 17:43:18 2008 +0100
+++ b/xen/include/public/xen-compat.h   Mon Mar 31 18:05:18 2008 +0100
@@ -41,8 +41,4 @@
 #error "These header files do not support the requested interface version."
 #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-unstable] Constrain the checks for GCC/ANSI to just those header files that, Xen patchbot-unstable <=