[Lemon-commits] Akos Ladanyi: Fix the check for the 'long long' ...

Lemon HG hg at lemon.cs.elte.hu
Sun Jun 7 18:32:59 CEST 2009


details:   http://lemon.cs.elte.hu/hg/lemon/rev/a0265f621d39
changeset: 724:a0265f621d39
user:      Akos Ladanyi <ladanyi [at] tmit.bme.hu>
date:      Fri May 29 10:35:05 2009 +0100
description:
	Fix the check for the 'long long' type

diffstat:

 CMakeLists.txt |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff --git a/CMakeLists.txt b/CMakeLists.txt
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,7 +18,8 @@
 FIND_PACKAGE(COIN)
 
 INCLUDE(CheckTypeSize)
-CHECK_TYPE_SIZE("long long" LEMON_LONG_LONG)
+CHECK_TYPE_SIZE("long long" LONG_LONG)
+SET(LEMON_HAVE_LONG_LONG ${HAVE_LONG_LONG})
 
 ENABLE_TESTING()
 



More information about the Lemon-commits mailing list