From df2436b4a6aaa5c74b1d0e86d6cad8705297f697 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 13 Jul 2010 16:07:52 +0200 Subject: [PATCH] build: Don't test for big endian on Windows. Visual Studio 2010 has problems running the test. --- ConfigureChecks.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 7191a3df..0cda00c1 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -119,4 +119,6 @@ if (WITH_DEBUG_CALLTRACE) endif (WITH_DEBUG_CALLTRACE) # ENDIAN -test_big_endian(WORDS_BIGENDIAN) +if (NOT WIN32) + test_big_endian(WORDS_BIGENDIAN) +endif (NOT WIN32)