diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-10-24 15:30:44 -0400 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-10-24 15:30:44 -0400 |
commit | 4b6515cfb59bb9d118b57f8ede4f67ea49dfbb23 (patch) | |
tree | 396d6b1a0b0a676f847991a6933bdfd79238d400 /external/unbound | |
parent | unbound: plumb the libdir up (diff) | |
download | monero-4b6515cfb59bb9d118b57f8ede4f67ea49dfbb23.tar.xz |
unbound: fix type checking
Diffstat (limited to 'external/unbound')
-rw-r--r-- | external/unbound/configure_checks.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/unbound/configure_checks.cmake b/external/unbound/configure_checks.cmake index 281bcf971..b65b48c23 100644 --- a/external/unbound/configure_checks.cmake +++ b/external/unbound/configure_checks.cmake @@ -104,10 +104,10 @@ function (check_type_exists type variable header default) set(CMAKE_EXTRA_INCLUDE_FILES "${header}") check_type_size("${type}" "${variable}") - if (${variable} STREQUAL "") + if (NOT HAVE_${type}) set("${variable}" "${default}" PARENT_SCOPE) else () - set("${variable}" "" PARENT_SCOPE) + set("${variable}" "FALSE" PARENT_SCOPE) endif () endfunction () |