aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cynapses.org>2010-07-13 16:07:52 +0200
committerAndreas Schneider <asn@cynapses.org>2010-08-03 18:13:59 +0200
commit019cb77b84542613df02e8c7cccb48aad4f0a988 (patch)
tree2eed8aa5ae51a3038320c4c5fa917a4c9909db7b
parent296f6a9217cb7afa080edb0efc16d309db77c06b (diff)
downloadlibssh-019cb77b84542613df02e8c7cccb48aad4f0a988.tar.gz
libssh-019cb77b84542613df02e8c7cccb48aad4f0a988.tar.xz
libssh-019cb77b84542613df02e8c7cccb48aad4f0a988.zip
build: Don't test for big endian on Windows.
Visual Studio 2010 has problems running the test.
-rw-r--r--ConfigureChecks.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 4594153e..e8f01a90 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -115,4 +115,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)