aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Armstrong <brian.armstrong.ece+github@gmail.com>2016-11-12 18:58:38 -0800
committerBrian Armstrong <brian.armstrong.ece+github@gmail.com>2016-11-12 18:58:38 -0800
commit2af820fb9914318942433a6a5a1dda1c03b57fdd (patch)
tree9421dbc1b5fd99783bc41ebe5d12620428335d40
parentbc5741fb1ac730ead24e9bd08977fc6c248e04b0 (diff)
downloadjansson-2af820fb9914318942433a6a5a1dda1c03b57fdd.zip
jansson-2af820fb9914318942433a6a5a1dda1c03b57fdd.tar.gz
jansson-2af820fb9914318942433a6a5a1dda1c03b57fdd.tar.bz2
parens for LONG_LONG_INT in cmake
when this is defined as "", cmake bails with an error about arguments in if
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 17974c2..e756eb6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -250,7 +250,7 @@ endif ()
# detect what to use for the 64 bit type.
# Note: I will prefer long long if I can get it, as that is what the automake system aimed for.
if (NOT DEFINED JSON_INT_T)
- if (HAVE_LONG_LONG_INT AND (${LONG_LONG_INT} EQUAL 8))
+ if (HAVE_LONG_LONG_INT AND ((${LONG_LONG_INT}) EQUAL 8))
set (JSON_INT_T "long long")
elseif (HAVE_INT64_T)
set (JSON_INT_T int64_t)