[Mesa-dev] [PATCH 2/2] Don't allow compilation if endianness isn't known

2011-05-08 Thread Matt Turner
PIPE_ARCH_UNKNOWN_ENDIAN is used no where else. All #else branches of
ifdef PIPE_ARCH_LITTLE assume big-endian. Not #error'ing out here
only serves to allow bad things to happen.

Signed-off-by: Matt Turner matts...@gmail.com
---
 src/gallium/include/pipe/p_config.h |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/include/pipe/p_config.h 
b/src/gallium/include/pipe/p_config.h
index d48188e..a0aa2df 100644
--- a/src/gallium/include/pipe/p_config.h
+++ b/src/gallium/include/pipe/p_config.h
@@ -127,7 +127,7 @@
 #elif defined(PIPE_ARCH_PPC) || defined(PIPE_ARCH_PPC_64)
 #define PIPE_ARCH_BIG_ENDIAN
 #else
-#define PIPE_ARCH_UNKNOWN_ENDIAN
+#error Unknown Endianness
 #endif
 
 #endif
-- 
1.7.3.4

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH 2/2] Don't allow compilation if endianness isn't known

2011-05-06 Thread Matt Turner
Signed-off-by: Matt Turner matts...@gmail.com
---

PIPE_ARCH_UNKNOWN_ENDIAN is used no where else. All #else branches of
#ifdef PIPE_ARCH_LITTLE assume big-endian. Not #error'ing out here
only serves to allow bad things to happen.

 src/gallium/include/pipe/p_config.h |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/include/pipe/p_config.h 
b/src/gallium/include/pipe/p_config.h
index 9e8ff6a..6dea49a 100644
--- a/src/gallium/include/pipe/p_config.h
+++ b/src/gallium/include/pipe/p_config.h
@@ -120,7 +120,7 @@
 #elif defined(PIPE_ARCH_PPC) || defined(PIPE_ARCH_PPC_64)
 #define PIPE_ARCH_BIG_ENDIAN
 #else
-#define PIPE_ARCH_UNKNOWN_ENDIAN
+#error Unknown Endianness
 #endif
 
 
-- 
1.7.3.4

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH 2/2] Don't allow compilation if endianness isn't known

2011-05-06 Thread Julien Cristau
On Fri, May  6, 2011 at 13:01:15 -0400, Matt Turner wrote:

 Signed-off-by: Matt Turner matts...@gmail.com
 ---
 
 PIPE_ARCH_UNKNOWN_ENDIAN is used no where else. All #else branches of
 #ifdef PIPE_ARCH_LITTLE assume big-endian. Not #error'ing out here
 only serves to allow bad things to happen.
 
I think this text should be part of the commit message.  Patch looks
like a good idea to me, fwiw.

Cheers,
Julien
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev