[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[certi-cvs] certi CMakeLists.txt
From: |
certi-cvs |
Subject: |
[certi-cvs] certi CMakeLists.txt |
Date: |
Fri, 25 Mar 2011 19:23:54 +0000 |
CVSROOT: /sources/certi
Module name: certi
Changes by: Eric NOULARD <erk> 11/03/25 19:23:53
Modified files:
. : CMakeLists.txt
Log message:
May be a typo for 64 bits check
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/CMakeLists.txt?cvsroot=certi&r1=1.97&r2=1.98
Patches:
Index: CMakeLists.txt
===================================================================
RCS file: /sources/certi/certi/CMakeLists.txt,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -b -r1.97 -r1.98
--- CMakeLists.txt 13 Mar 2011 19:58:34 -0000 1.97
+++ CMakeLists.txt 25 Mar 2011 19:23:53 -0000 1.98
@@ -20,12 +20,12 @@
INCLUDE(CheckLibraryExists)
# Test 32/64 bits
-if("${CMAKE_SIZEOF_VOID_P}" EQUAL 8)
+if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
message(STATUS "Host is 64 bits")
add_definitions(-DHOST_IS_64BITS)
-else("${CMAKE_SIZEOF_VOID_P}" EQUAL 8)
+else("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
message(STATUS "Host is 32 bits")
-endif("${CMAKE_SIZEOF_VOID_P}" EQUAL 8)
+endif("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
# Test Endianess
INCLUDE(TestBigEndian)
TEST_BIG_ENDIAN(BIG_ENDIAN)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [certi-cvs] certi CMakeLists.txt,
certi-cvs <=